summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/wrong-escape-of-curly-braces.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/wrong-escape-of-curly-braces.rs')
-rw-r--r--src/test/ui/parser/wrong-escape-of-curly-braces.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/ui/parser/wrong-escape-of-curly-braces.rs b/src/test/ui/parser/wrong-escape-of-curly-braces.rs
new file mode 100644
index 000000000..8e5258acd
--- /dev/null
+++ b/src/test/ui/parser/wrong-escape-of-curly-braces.rs
@@ -0,0 +1,8 @@
+fn main() {
+ let ok = "{{everything fine}}";
+ let bad = "\{it is wrong\}";
+ //~^ ERROR unknown character escape: `{`
+ //~| HELP if used in a formatting string, curly braces are escaped with `{{` and `}}`
+ //~| ERROR unknown character escape: `}`
+ //~| HELP if used in a formatting string, curly braces are escaped with `{{` and `}}`
+}