summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/wrong-escape-of-curly-braces.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/wrong-escape-of-curly-braces.stderr')
-rw-r--r--src/test/ui/parser/wrong-escape-of-curly-braces.stderr18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/test/ui/parser/wrong-escape-of-curly-braces.stderr b/src/test/ui/parser/wrong-escape-of-curly-braces.stderr
new file mode 100644
index 000000000..ff1a2fb0f
--- /dev/null
+++ b/src/test/ui/parser/wrong-escape-of-curly-braces.stderr
@@ -0,0 +1,18 @@
+error: unknown character escape: `{`
+ --> $DIR/wrong-escape-of-curly-braces.rs:3:17
+ |
+LL | let bad = "\{it is wrong\}";
+ | ^ unknown character escape
+ |
+ = help: if used in a formatting string, curly braces are escaped with `{{` and `}}`
+
+error: unknown character escape: `}`
+ --> $DIR/wrong-escape-of-curly-braces.rs:3:30
+ |
+LL | let bad = "\{it is wrong\}";
+ | ^ unknown character escape
+ |
+ = help: if used in a formatting string, curly braces are escaped with `{{` and `}}`
+
+error: aborting due to 2 previous errors
+