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

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

18 lines
557 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
|
2019-03-09 06:03:44 -06:00
LL | #![feature(macro_reexport)]
2019-11-25 14:36:26 -06:00
| ^^^^^^^^^^^^^^ feature has been removed
|
2019-11-25 14:36:26 -06:00
= note: subsumed by `pub use`
error: cannot find attribute `macro_reexport` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/macro-reexport-removed.rs:5:3
|
2019-03-09 06:03:44 -06:00
LL | #[macro_reexport(macro_one)]
| ^^^^^^^^^^^^^^ help: a built-in attribute with a similar name exists: `macro_export`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0557`.