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