]> git.lizzy.rs Git - rust.git/blob - src/test/ui/privacy/macro-private-reexport.rs
change edition to 2021
[rust.git] / src / test / ui / privacy / macro-private-reexport.rs
1 // edition:2021
2
3 mod foo {
4     macro_rules! bar {
5         () => {};
6     }
7
8     pub use bar as _; //~ ERROR `bar` is only public within the crate, and cannot be re-exported outside
9 }
10
11 fn main() {}