2021-11-13 05:14:17 -06:00
|
|
|
|
// This tests that the error generated when a character literal has multiple
|
|
|
|
|
// characters in it contains a note about non-printing characters.
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let _hair_space_around = ' x';
|
|
|
|
|
//~^ ERROR: character literal may only contain one codepoint
|
|
|
|
|
//~| NOTE: there are non-printing characters, the full sequence is `\u{200a}x\u{200b}`
|
2021-11-13 06:46:22 -06:00
|
|
|
|
//~| HELP: consider removing the non-printing characters
|
|
|
|
|
//~| SUGGESTION: x
|
2021-11-13 05:14:17 -06:00
|
|
|
|
}
|