mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
23 lines
563 B
Plaintext
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
|
|
|