]> git.lizzy.rs Git - rust.git/blob - src/test/ui/custom_attribute.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / custom_attribute.stderr
1 error[E0658]: The attribute `foo` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
2   --> $DIR/custom_attribute.rs:3:3
3    |
4 LL | #[foo] //~ ERROR The attribute `foo`
5    |   ^^^
6    |
7    = help: add #![feature(custom_attribute)] to the crate attributes to enable
8
9 error[E0658]: The attribute `foo` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
10   --> $DIR/custom_attribute.rs:5:7
11    |
12 LL |     #[foo] //~ ERROR The attribute `foo`
13    |       ^^^
14    |
15    = help: add #![feature(custom_attribute)] to the crate attributes to enable
16
17 error[E0658]: The attribute `foo` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
18   --> $DIR/custom_attribute.rs:7:7
19    |
20 LL |     #[foo] //~ ERROR The attribute `foo`
21    |       ^^^
22    |
23    = help: add #![feature(custom_attribute)] to the crate attributes to enable
24
25 error: aborting due to 3 previous errors
26
27 For more information about this error, try `rustc --explain E0658`.