rust/tests/ui/parser/char/whitespace-character-literal.rs
2023-01-11 09:32:08 +00:00

11 lines
439 B
Rust
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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}`
//~| HELP: consider removing the non-printing characters
//~| SUGGESTION: x
}