2021-11-13 05:14:17 -06:00
|
|
|
|
error: character literal may only contain one codepoint
|
2021-11-13 06:46:22 -06:00
|
|
|
|
--> $DIR/whitespace-character-literal.rs:5:30
|
2021-11-13 05:14:17 -06:00
|
|
|
|
|
|
|
|
|
|
LL | let _hair_space_around = ' x';
|
2021-11-13 06:46:22 -06:00
|
|
|
|
| ^--^
|
|
|
|
|
| |
|
|
|
|
|
| help: consider removing the non-printing characters: `x`
|
2021-11-13 05:14:17 -06:00
|
|
|
|
|
|
|
|
|
|
note: there are non-printing characters, the full sequence is `\u{200a}x\u{200b}`
|
2021-11-13 06:46:22 -06:00
|
|
|
|
--> $DIR/whitespace-character-literal.rs:5:31
|
2021-11-13 05:14:17 -06:00
|
|
|
|
|
|
|
|
|
|
LL | let _hair_space_around = ' x';
|
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|