rust/tests/ui/unicode.stderr

33 lines
930 B
Text
Raw Normal View History

error: zero-width space detected
2018-10-06 18:18:06 +02:00
--> $DIR/unicode.rs:16:12
|
16 | print!("Here >< is a ZWS, and another");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::zero-width-space` implied by `-D warnings`
= help: Consider replacing the string with:
""Here >/u{200B}< is a ZWS, and /u{200B}another""
error: non-nfc unicode sequence detected
2018-10-06 18:18:06 +02:00
--> $DIR/unicode.rs:22:12
|
2018-10-06 18:18:06 +02:00
22 | print!("̀àh?");
2017-11-07 00:26:44 +01:00
| ^^^^^
|
= note: `-D clippy::unicode-not-nfc` implied by `-D warnings`
= help: Consider replacing the string with:
""̀àh?""
error: literal non-ASCII character detected
2018-10-06 18:18:06 +02:00
--> $DIR/unicode.rs:28:12
|
2018-10-06 18:18:06 +02:00
28 | print!("Üben!");
| ^^^^^^^
|
= note: `-D clippy::non-ascii-literal` implied by `-D warnings`
= help: Consider replacing the string with:
2017-08-01 17:54:21 +02:00
""/u{dc}ben!""
2018-01-16 17:06:27 +01:00
error: aborting due to 3 previous errors