rust/tests/ui/macros/macro-reexport-removed.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
223 B
Rust
Raw Normal View History

// aux-build:two_macros.rs
#![feature(macro_reexport)] //~ ERROR feature has been removed
2016-01-20 23:16:59 +00:00
#[macro_reexport(macro_one)] //~ ERROR cannot find attribute `macro_reexport` in this scope
extern crate two_macros;
fn main() {}