blob: ff1a2fb0f3c67be6f5f525e9f885613e846a6bda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|