]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro-reexport-removed.rs
Auto merge of #61741 - Centril:rollup-fgro5kz, r=Centril
[rust.git] / src / test / ui / macros / macro-reexport-removed.rs
1 // aux-build:two_macros.rs
2
3 #![feature(macro_reexport)] //~ ERROR feature has been removed
4
5 #[macro_reexport(macro_one)] //~ ERROR attribute `macro_reexport` is currently unknown
6 extern crate two_macros;
7
8 fn main() {}