mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-30 22:38:29 +00:00
44 lines
934 B
Plaintext
44 lines
934 B
Plaintext
error: unused attribute
|
|
--> $DIR/used_with_arg.rs:16:1
|
|
|
|
|
LL | #[used(compiler)]
|
|
| ^^^^^^^^^^^^^^^^^ help: remove this attribute
|
|
|
|
|
note: attribute also specified here
|
|
--> $DIR/used_with_arg.rs:14:1
|
|
|
|
|
LL | #[used(compiler)]
|
|
| ^^^^^^^^^^^^^^^^^
|
|
note: the lint level is defined here
|
|
--> $DIR/used_with_arg.rs:1:9
|
|
|
|
|
LL | #![deny(unused_attributes)]
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: unused attribute
|
|
--> $DIR/used_with_arg.rs:17:1
|
|
|
|
|
LL | #[used(linker)]
|
|
| ^^^^^^^^^^^^^^^ help: remove this attribute
|
|
|
|
|
note: attribute also specified here
|
|
--> $DIR/used_with_arg.rs:15:1
|
|
|
|
|
LL | #[used(linker)]
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
error: unused attribute
|
|
--> $DIR/used_with_arg.rs:25:1
|
|
|
|
|
LL | #[used]
|
|
| ^^^^^^^ help: remove this attribute
|
|
|
|
|
note: attribute also specified here
|
|
--> $DIR/used_with_arg.rs:24:1
|
|
|
|
|
LL | #[used(linker)]
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|