rust/src/test/ui/parser/attr.stderr

26 lines
782 B
Text
Raw Normal View History

2018-10-20 23:36:17 +03:00
error: an inner attribute is not permitted in this context
2019-07-27 19:35:55 +07:00
--> $DIR/attr.rs:5:1
2018-10-20 23:36:17 +03:00
|
2019-03-09 15:03:44 +03:00
LL | #![lang = "foo"]
2019-07-27 19:35:55 +07:00
| ^^^^^^^^^^^^^^^^
LL |
LL | fn foo() {}
| ----------- the inner attribute doesn't annotate this function
2018-10-20 23:36:17 +03:00
|
= note: inner attributes, like `#![no_std]`, annotate the item enclosing them, and are usually found at the beginning of source files
help: to annotate the function, change the attribute from inner to outer style
|
LL - #![lang = "foo"]
LL + #[lang = "foo"]
|
2018-10-20 23:36:17 +03:00
error[E0522]: definition of an unknown language item: `foo`
--> $DIR/attr.rs:5:1
|
2019-03-09 15:03:44 +03:00
LL | #![lang = "foo"]
| ^^^^^^^^^^^^^^^^ definition of unknown language item `foo`
error: aborting due to 2 previous errors
2018-10-20 23:36:17 +03:00
For more information about this error, try `rustc --explain E0522`.