]> git.lizzy.rs Git - rust.git/blob - src/test/ui/custom_attribute.stderr
Rollup merge of #60081 - pawroman:cleanup_unicode_script, r=varkor
[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
2   --> $DIR/custom_attribute.rs:3:3
3    |
4 LL | #[foo]
5    |   ^^^
6    |
7    = note: for more information, see https://github.com/rust-lang/rust/issues/29642
8    = help: add #![feature(custom_attribute)] to the crate attributes to enable
9
10 error[E0658]: The attribute `foo` is currently unknown to the compiler and may have meaning added to it in the future
11   --> $DIR/custom_attribute.rs:5:7
12    |
13 LL |     #[foo]
14    |       ^^^
15    |
16    = note: for more information, see https://github.com/rust-lang/rust/issues/29642
17    = help: add #![feature(custom_attribute)] to the crate attributes to enable
18
19 error[E0658]: The attribute `foo` is currently unknown to the compiler and may have meaning added to it in the future
20   --> $DIR/custom_attribute.rs:7:7
21    |
22 LL |     #[foo]
23    |       ^^^
24    |
25    = note: for more information, see https://github.com/rust-lang/rust/issues/29642
26    = help: add #![feature(custom_attribute)] to the crate attributes to enable
27
28 error: aborting due to 3 previous errors
29
30 For more information about this error, try `rustc --explain E0658`.