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