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\}";
|
|
|
|
//~^ 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 `}}`
|
|
|
|
}
|