diff options
Diffstat (limited to 'tests/ui/parser/wrong-escape-of-curly-braces.stderr')
-rw-r--r-- | tests/ui/parser/wrong-escape-of-curly-braces.stderr | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/parser/wrong-escape-of-curly-braces.stderr b/tests/ui/parser/wrong-escape-of-curly-braces.stderr new file mode 100644 index 000000000..ff1a2fb0f --- /dev/null +++ b/tests/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 + |