summaryrefslogtreecommitdiff
path: root/subprojects/thiserror/tests/ui/raw-identifier.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/thiserror/tests/ui/raw-identifier.stderr')
-rw-r--r--subprojects/thiserror/tests/ui/raw-identifier.stderr21
1 files changed, 21 insertions, 0 deletions
diff --git a/subprojects/thiserror/tests/ui/raw-identifier.stderr b/subprojects/thiserror/tests/ui/raw-identifier.stderr
new file mode 100644
index 0000000..a3ce94d
--- /dev/null
+++ b/subprojects/thiserror/tests/ui/raw-identifier.stderr
@@ -0,0 +1,21 @@
+error: invalid format string: raw identifiers are not supported
+ --> tests/ui/raw-identifier.rs:4:18
+ |
+4 | #[error("error: {r#fn}")]
+ | --^^
+ | |
+ | raw identifier used here in format string
+ | help: remove the `r#`
+ |
+ = 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
+ |
+11 | let _ = format!("error: {r#fn}");
+ | --^^
+ | |
+ | raw identifier used here in format string
+ | help: remove the `r#`
+ |
+ = note: identifiers in format strings can be keywords and don't need to be prefixed with `r#`