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, 0 insertions, 18 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
deleted file mode 100644
index ff1a2fb0f..000000000
--- a/src/test/ui/parser/wrong-escape-of-curly-braces.stderr
+++ /dev/null
@@ -1,18 +0,0 @@
-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
-