rust/src/test/ui/macros/macro-reexport-removed.stderr

25 lines
972 B
Plaintext
Raw Normal View History

error[E0557]: feature has been removed
2018-12-25 09:56:47 -06:00
--> $DIR/macro-reexport-removed.rs:3:12
|
LL | #![feature(macro_reexport)] //~ ERROR feature has been removed
| ^^^^^^^^^^^^^^
|
2018-05-13 19:22:52 -05:00
note: subsumed by `pub use`
2018-12-25 09:56:47 -06:00
--> $DIR/macro-reexport-removed.rs:3:12
|
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-12-25 09:56:47 -06:00
--> $DIR/macro-reexport-removed.rs:5:3
|
LL | #[macro_reexport(macro_one)] //~ ERROR attribute `macro_reexport` is currently unknown
| ^^^^^^^^^^^^^^ help: a built-in attribute with a similar name exists: `macro_export`
|
= 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`.