2015-02-10 19:30:33 -08:00
|
|
|
// aux-build:two_macros.rs
|
|
|
|
|
2018-04-15 16:59:00 +03:00
|
|
|
#![feature(macro_reexport)] //~ ERROR feature has been removed
|
2016-01-21 12:16:59 +13:00
|
|
|
|
2019-09-15 12:55:18 +03:00
|
|
|
#[macro_reexport(macro_one)] //~ ERROR cannot find attribute `macro_reexport` in this scope
|
2015-02-10 19:30:33 -08:00
|
|
|
extern crate two_macros;
|
|
|
|
|
2018-04-15 16:59:00 +03:00
|
|
|
fn main() {}
|