mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Improve diagnostic on raw identifier in format string
This commit is contained in:
parent
58cc36e69f
commit
bf6efce84d
2 changed files with 10 additions and 10 deletions
|
@ -70,6 +70,9 @@ impl Display<'_> {
|
|||
member
|
||||
}
|
||||
'a'..='z' | 'A'..='Z' | '_' => {
|
||||
if read.starts_with("r#") {
|
||||
continue;
|
||||
}
|
||||
let ident = Ident::new(take_ident(&mut read), span);
|
||||
MemberUnraw::Named(IdentUnraw::new(ident))
|
||||
}
|
||||
|
|
|
@ -1,10 +1,13 @@
|
|||
error: invalid format string: expected `}`, found `#`
|
||||
--> tests/ui/raw-identifier.rs:4:9
|
||||
error: invalid format string: raw identifiers are not supported
|
||||
--> tests/ui/raw-identifier.rs:4:18
|
||||
|
|
||||
4 | #[error("error: {r#fn}")]
|
||||
| ^^^^^^^^^^^^^^^ expected `}` in format string
|
||||
| --^^
|
||||
| |
|
||||
| raw identifier used here in format string
|
||||
| help: remove the `r#`
|
||||
|
|
||||
= note: if you intended to print `{`, you can escape it using `{{`
|
||||
= note: identifiers in format strings can be keywords and don't need to be prefixed with `r#`
|
||||
|
||||
error: invalid format string: raw identifiers are not supported
|
||||
--> tests/ui/raw-identifier.rs:11:30
|
||||
|
@ -16,9 +19,3 @@ error: invalid format string: raw identifiers are not supported
|
|||
| help: remove the `r#`
|
||||
|
|
||||
= note: identifiers in format strings can be keywords and don't need to be prefixed with `r#`
|
||||
|
||||
error[E0425]: cannot find value `r` in this scope
|
||||
--> tests/ui/raw-identifier.rs:4:9
|
||||
|
|
||||
4 | #[error("error: {r#fn}")]
|
||||
| ^^^^^^^^^^^^^^^ not found in this scope
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue