2024-07-03 04:52:16 +00:00
|
|
|
error: `cfg` is not an unsafe attribute
|
2024-11-22 15:20:22 +00:00
|
|
|
--> $DIR/extraneous-unsafe-attributes.rs:3:3
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
LL | #[unsafe(cfg(any()))]
|
2024-07-10 00:06:49 +00:00
|
|
|
| ^^^^^^ this is not an unsafe attribute
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
= note: extraneous unsafe is not allowed in attributes
|
|
|
|
|
|
|
|
error: `cfg_attr` is not an unsafe attribute
|
2024-11-22 15:20:22 +00:00
|
|
|
--> $DIR/extraneous-unsafe-attributes.rs:6:3
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
LL | #[unsafe(cfg_attr(any(), allow(dead_code)))]
|
2024-07-10 00:06:49 +00:00
|
|
|
| ^^^^^^ this is not an unsafe attribute
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
= note: extraneous unsafe is not allowed in attributes
|
|
|
|
|
|
|
|
error: `test` is not an unsafe attribute
|
2024-11-22 15:20:22 +00:00
|
|
|
--> $DIR/extraneous-unsafe-attributes.rs:9:3
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
LL | #[unsafe(test)]
|
2024-07-10 00:06:49 +00:00
|
|
|
| ^^^^^^ this is not an unsafe attribute
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
= note: extraneous unsafe is not allowed in attributes
|
|
|
|
|
2024-09-30 10:13:17 +00:00
|
|
|
error: expected identifier, found keyword `unsafe`
|
2024-11-22 15:20:22 +00:00
|
|
|
--> $DIR/extraneous-unsafe-attributes.rs:30:19
|
2024-09-30 10:13:17 +00:00
|
|
|
|
|
|
|
|
LL | let _a = cfg!(unsafe(foo));
|
|
|
|
| ^^^^^^ expected identifier, found keyword
|
|
|
|
|
|
|
|
|
help: escape `unsafe` to use it as an identifier
|
|
|
|
|
|
|
|
|
LL | let _a = cfg!(r#unsafe(foo));
|
|
|
|
| ++
|
|
|
|
|
|
|
|
error[E0537]: invalid predicate `r#unsafe`
|
2024-11-22 15:20:22 +00:00
|
|
|
--> $DIR/extraneous-unsafe-attributes.rs:30:19
|
2024-09-30 10:13:17 +00:00
|
|
|
|
|
|
|
|
LL | let _a = cfg!(unsafe(foo));
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
2024-07-03 04:52:16 +00:00
|
|
|
error: `ignore` is not an unsafe attribute
|
2024-11-22 15:20:22 +00:00
|
|
|
--> $DIR/extraneous-unsafe-attributes.rs:12:3
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
LL | #[unsafe(ignore = "test")]
|
2024-07-10 00:06:49 +00:00
|
|
|
| ^^^^^^ this is not an unsafe attribute
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
= note: extraneous unsafe is not allowed in attributes
|
|
|
|
|
|
|
|
error: `should_panic` is not an unsafe attribute
|
2024-11-22 15:20:22 +00:00
|
|
|
--> $DIR/extraneous-unsafe-attributes.rs:15:3
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
LL | #[unsafe(should_panic(expected = "test"))]
|
2024-07-10 00:06:49 +00:00
|
|
|
| ^^^^^^ this is not an unsafe attribute
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
= note: extraneous unsafe is not allowed in attributes
|
|
|
|
|
|
|
|
error: `macro_use` is not an unsafe attribute
|
2024-11-22 15:20:22 +00:00
|
|
|
--> $DIR/extraneous-unsafe-attributes.rs:18:3
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
LL | #[unsafe(macro_use)]
|
2024-07-10 00:06:49 +00:00
|
|
|
| ^^^^^^ this is not an unsafe attribute
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
= note: extraneous unsafe is not allowed in attributes
|
|
|
|
|
|
|
|
error: `macro_export` is not an unsafe attribute
|
2024-11-22 15:20:22 +00:00
|
|
|
--> $DIR/extraneous-unsafe-attributes.rs:20:7
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
LL | #[unsafe(macro_export)]
|
2024-07-10 00:06:49 +00:00
|
|
|
| ^^^^^^ this is not an unsafe attribute
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
= note: extraneous unsafe is not allowed in attributes
|
|
|
|
|
|
|
|
error: `used` is not an unsafe attribute
|
2024-11-22 15:20:22 +00:00
|
|
|
--> $DIR/extraneous-unsafe-attributes.rs:26:3
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
LL | #[unsafe(used)]
|
2024-07-10 00:06:49 +00:00
|
|
|
| ^^^^^^ this is not an unsafe attribute
|
2024-07-03 04:52:16 +00:00
|
|
|
|
|
|
|
|
= note: extraneous unsafe is not allowed in attributes
|
|
|
|
|
2024-09-30 10:13:17 +00:00
|
|
|
error: aborting due to 10 previous errors
|
2024-07-03 04:52:16 +00:00
|
|
|
|
2024-09-30 10:13:17 +00:00
|
|
|
For more information about this error, try `rustc --explain E0537`.
|