rust/tests/ui/lint/empty-lint-attributes.stderr
Jonathan Brouwer 66b8a9db1f
Update uitests with new unused_attributes warnings
Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com>
2025-10-18 21:17:48 +02:00

35 lines
982 B
Text

warning: unused attribute
--> $DIR/empty-lint-attributes.rs:9:1
|
LL | #[forbid()]
| ^^^^^^^^^^^ help: remove this attribute
|
= note: attribute `forbid` with an empty list has no effect
= note: requested on the command line with `-W unused-attributes`
warning: unused attribute
--> $DIR/empty-lint-attributes.rs:12:1
|
LL | #[deny(reason = "ultion")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove this attribute
|
= note: attribute `deny` without any lints has no effect
warning: unused attribute
--> $DIR/empty-lint-attributes.rs:6:1
|
LL | #![allow()]
| ^^^^^^^^^^^ help: remove this attribute
|
= note: attribute `allow` with an empty list has no effect
warning: unused attribute
--> $DIR/empty-lint-attributes.rs:7:1
|
LL | #![warn(reason = "observationalism")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove this attribute
|
= note: attribute `warn` without any lints has no effect
warning: 4 warnings emitted