mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
483 B
Plaintext
18 lines
483 B
Plaintext
error: malformed `deprecated` attribute input
|
|
--> $DIR/invalid-literal.rs:1:1
|
|
|
|
|
LL | #[deprecated = b"test"]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: the following are the possible correct uses
|
|
|
|
|
LL | #[deprecated = "reason"]
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~
|
|
LL | #[deprecated(/*opt*/ since = "version", /*opt*/ note = "reason")]
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
LL | #[deprecated]
|
|
| ~~~~~~~~~~~~~
|
|
|
|
error: aborting due to previous error
|
|
|