blob: 8e5258acd49da9109df24506208dca04c543bf21 [file] [log] [blame] [edit]
fn main() {
let ok = "{{everything fine}}";
let bad = "\{it is wrong\}";
//~^ 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 `}}`
}