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 
main()8 fn main() {}
9