]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/attr.stderr
Rollup merge of #92024 - pcwalton:per-codegen-unit-names, r=davidtwco
[rust.git] / src / test / ui / parser / attr.stderr
1 error: an inner attribute is not permitted in this context
2   --> $DIR/attr.rs:5:1
3    |
4 LL | #![lang = "foo"]
5    | ^^^^^^^^^^^^^^^^
6 LL |
7 LL | fn foo() {}
8    | ----------- the inner attribute doesn't annotate this function
9    |
10    = note: inner attributes, like `#![no_std]`, annotate the item enclosing them, and are usually found at the beginning of source files
11 help: to annotate the function, change the attribute from inner to outer style
12    |
13 LL - #![lang = "foo"]
14 LL + #[lang = "foo"]
15    | 
16
17 error[E0522]: definition of an unknown language item: `foo`
18   --> $DIR/attr.rs:5:1
19    |
20 LL | #![lang = "foo"]
21    | ^^^^^^^^^^^^^^^^ definition of unknown language item `foo`
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0522`.