2021-01-23 20:48:31 +00:00
|
|
|
error: unknown character escape: `{`
|
2019-01-06 15:33:05 +00:00
|
|
|
--> $DIR/wrong-escape-of-curly-braces.rs:3:17
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
2019-03-13 04:47:36 +00:00
|
|
|
LL | let bad = "\{it is wrong\}";
|
2019-03-20 18:45:25 +00:00
|
|
|
| ^ unknown character escape
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
2019-03-20 18:45:25 +00:00
|
|
|
= help: if used in a formatting string, curly braces are escaped with `{{` and `}}`
|
2018-10-20 20:36:17 +00:00
|
|
|
|
2021-01-23 20:48:31 +00:00
|
|
|
error: unknown character escape: `}`
|
2019-01-06 15:33:05 +00:00
|
|
|
--> $DIR/wrong-escape-of-curly-braces.rs:3:30
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
2019-03-13 04:47:36 +00:00
|
|
|
LL | let bad = "\{it is wrong\}";
|
2019-03-20 18:45:25 +00:00
|
|
|
| ^ unknown character escape
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
2019-03-20 18:45:25 +00:00
|
|
|
= help: if used in a formatting string, curly braces are escaped with `{{` and `}}`
|
2018-10-20 20:36:17 +00:00
|
|
|
|
2018-10-20 21:38:23 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2018-10-20 20:36:17 +00:00
|
|
|
|