Files
rust/tests/ui/attributes/attr-order-deprecated.stderr
Jonathan Brouwer 6f968782fd Add regression tests
2026-04-17 12:37:58 +02:00

23 lines
563 B
Plaintext

error: multiple `deprecated` attributes
--> $DIR/attr-order-deprecated.rs:3:1
|
LL | #[deprecated = "BBB"]
| ^^^^^^^^^^^^^^^^^^^^^ help: remove this attribute
|
note: attribute also specified here
--> $DIR/attr-order-deprecated.rs:1:1
|
LL | #[deprecated = "AAA"]
| ^^^^^^^^^^^^^^^^^^^^^
warning: use of deprecated function `deprecated`: AAA
--> $DIR/attr-order-deprecated.rs:8:5
|
LL | deprecated();
| ^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
error: aborting due to 1 previous error; 1 warning emitted