]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro-reexport-removed.rs
Merge commit '7c21f91b15b7604f818565646b686d90f99d1baf' into clippyup
[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 cannot find attribute `macro_reexport` in this scope
6 extern crate two_macros;
7
8 fn main() {}