]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/issue-79148.rs
Merge commit '598f0909568a51de8a2d1148f55a644fd8dffad0' into sync_cg_clif-2023-01-24
[rust.git] / tests / ui / proc-macro / issue-79148.rs
1 // aux-build:re-export.rs
2 // edition:2018
3
4 extern crate re_export;
5
6 use re_export::cause_ice;
7
8 cause_ice!(); //~ ERROR `Variant` is only public within the crate, and cannot be re-exported outside
9
10 fn main() {}