]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/attr.stderr
New upstream version 1.35.0+dfsg1
[rustc.git] / src / test / ui / parser / attr.stderr
CommitLineData
0bf4aa26 1error: an inner attribute is not permitted in this context
0731742a 2 --> $DIR/attr.rs:5:3
0bf4aa26 3 |
532ac7d7 4LL | #![lang = "foo"]
0bf4aa26
XL
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
9fa01778
XL
9error[E0522]: definition of an unknown language item: `foo`
10 --> $DIR/attr.rs:5:1
11 |
532ac7d7 12LL | #![lang = "foo"]
9fa01778
XL
13 | ^^^^^^^^^^^^^^^^ definition of unknown language item `foo`
14
15error: aborting due to 2 previous errors
0bf4aa26 16
9fa01778 17For more information about this error, try `rustc --explain E0522`.