2019-05-21 17:47:23 -07:00
|
|
|
error: malformed `deprecated` attribute input
|
2019-02-04 12:41:01 -05:00
|
|
|
--> $DIR/invalid-literal.rs:1:1
|
|
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | #[deprecated = b"test"]
|
2019-02-04 12:41:01 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2019-05-21 17:47:23 -07:00
|
|
|
help: the following are the possible correct uses
|
|
|
|
|
|
|
2024-07-09 22:30:26 +00:00
|
|
|
LL - #[deprecated = b"test"]
|
|
|
|
|
LL + #[deprecated = "reason"]
|
|
|
|
|
|
|
|
|
|
|
LL - #[deprecated = b"test"]
|
|
|
|
|
LL + #[deprecated(/*opt*/ since = "version", /*opt*/ note = "reason")]
|
|
|
|
|
|
|
|
|
|
|
LL - #[deprecated = b"test"]
|
|
|
|
|
LL + #[deprecated]
|
|
|
|
|
|
|
2019-02-04 12:41:01 -05:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-02-04 12:41:01 -05:00
|
|
|
|