2018-04-15 08:59:00 -05:00
|
|
|
error[E0557]: feature has been removed
|
|
|
|
--> $DIR/macro-reexport-removed.rs:13:12
|
|
|
|
|
|
2018-04-29 09:58:51 -05:00
|
|
|
LL | #![feature(macro_reexport)] //~ ERROR feature has been removed
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2018-05-13 19:22:52 -05:00
|
|
|
note: subsumed by `pub use`
|
2018-04-29 09:58:51 -05:00
|
|
|
--> $DIR/macro-reexport-removed.rs:13:12
|
|
|
|
|
|
2018-04-15 08:59:00 -05:00
|
|
|
LL | #![feature(macro_reexport)] //~ ERROR feature has been removed
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0658]: The attribute `macro_reexport` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
|
2018-08-14 19:51:12 -05:00
|
|
|
--> $DIR/macro-reexport-removed.rs:15:3
|
2018-04-15 08:59:00 -05:00
|
|
|
|
|
|
|
|
LL | #[macro_reexport(macro_one)] //~ ERROR attribute `macro_reexport` is currently unknown
|
2018-08-14 19:51:12 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
2018-04-15 08:59:00 -05:00
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
Some errors occurred: E0557, E0658.
|
|
|
|
For more information about an error, try `rustc --explain E0557`.
|