]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/attr.stderr
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[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    |
7    = note: inner attributes, like `#![no_std]`, annotate the item enclosing them, and are usually found at the beginning of source files. Outer attributes, like `#[test]`, annotate the item following them.
8
9 error[E0522]: definition of an unknown language item: `foo`
10   --> $DIR/attr.rs:5:1
11    |
12 LL | #![lang = "foo"]
13    | ^^^^^^^^^^^^^^^^ definition of unknown language item `foo`
14
15 error: aborting due to 2 previous errors
16
17 For more information about this error, try `rustc --explain E0522`.