2019-01-06 09:33:05 -06:00
|
|
|
fn main() {
|
2015-04-13 08:56:10 -05:00
|
|
|
let ok = "{{everything fine}}";
|
|
|
|
let bad = "\{it is wrong\}";
|
2021-01-23 14:48:31 -06:00
|
|
|
//~^ 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 `}}`
|
2015-04-13 08:56:10 -05:00
|
|
|
}
|