]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-reexport-removed.rs
Rollup merge of #106783 - WaffleLapkin:break-my-ident, r=wesleywiser
[rust.git] / tests / 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 cannot find attribute `macro_reexport` in this scope
6 extern crate two_macros;
7
8 fn main() {}