2023-12-26 18:34:44 -08:00
|
|
|
error: expected unsuffixed literal, found `test`
|
2019-11-13 19:32:12 +01:00
|
|
|
--> $DIR/issue-66340-deprecated-attr-non-meta-grammar.rs:9:21
|
|
|
|
|
|
|
|
|
LL | #[deprecated(note = test)]
|
|
|
|
| ^^^^
|
2023-12-26 18:34:44 -08:00
|
|
|
|
|
2024-05-06 01:25:49 +02:00
|
|
|
help: surround the identifier with quotation marks to make it into a string literal
|
2023-12-26 18:34:44 -08:00
|
|
|
|
|
|
|
|
LL | #[deprecated(note = "test")]
|
|
|
|
| + +
|
2019-11-13 19:32:12 +01:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-11-13 19:32:12 +01:00
|
|
|
|