]> git.proxmox.com Git - rustc.git/blob - src/test/ui/macro-reexport-removed.stderr
New upstream version 1.27.1+dfsg1
[rustc.git] / src / test / ui / macro-reexport-removed.stderr
1 error[E0557]: feature has been removed
2 --> $DIR/macro-reexport-removed.rs:13:12
3 |
4 LL | #![feature(macro_reexport)] //~ ERROR feature has been removed
5 | ^^^^^^^^^^^^^^
6 |
7 note: subsumed by `#![feature(use_extern_macros)]` and `pub use`
8 --> $DIR/macro-reexport-removed.rs:13:12
9 |
10 LL | #![feature(macro_reexport)] //~ ERROR feature has been removed
11 | ^^^^^^^^^^^^^^
12
13 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)
14 --> $DIR/macro-reexport-removed.rs:15:1
15 |
16 LL | #[macro_reexport(macro_one)] //~ ERROR attribute `macro_reexport` is currently unknown
17 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18 |
19 = help: add #![feature(custom_attribute)] to the crate attributes to enable
20
21 error: aborting due to 2 previous errors
22
23 Some errors occurred: E0557, E0658.
24 For more information about an error, try `rustc --explain E0557`.