rust/src/test/ui/lint/lint-unknown-attr.stderr

27 lines
582 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: unused attribute
2018-12-25 09:56:47 -06:00
--> $DIR/lint-unknown-attr.rs:9:1
2018-08-08 07:28:26 -05:00
|
LL | #[dance] mod a {} //~ ERROR unused attribute
| ^^^^^^^^
|
note: lint level defined here
2018-12-25 09:56:47 -06:00
--> $DIR/lint-unknown-attr.rs:5:9
2018-08-08 07:28:26 -05:00
|
LL | #![deny(unused_attributes)]
| ^^^^^^^^^^^^^^^^^
error: unused attribute
2018-12-25 09:56:47 -06:00
--> $DIR/lint-unknown-attr.rs:11:1
2018-08-08 07:28:26 -05:00
|
LL | #[dance] fn main() {} //~ ERROR unused attribute
| ^^^^^^^^
error: unused attribute
2018-12-25 09:56:47 -06:00
--> $DIR/lint-unknown-attr.rs:7:1
2018-08-08 07:28:26 -05:00
|
LL | #![mutable_doc] //~ ERROR unused attribute
| ^^^^^^^^^^^^^^^
error: aborting due to 3 previous errors