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
|
|
|
|
|
|
|
|
|
LL | #[deprecated = "reason"]
|
2021-06-21 19:07:19 -07:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-10-01 18:09:31 +00:00
|
|
|
LL | #[deprecated(/*opt*/ since = "version", /*opt*/ note = "reason")]
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
LL | #[deprecated]
|
|
|
|
| ~~~~~~~~~~~~~
|
2019-02-04 12:41:01 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|