rust/tests/ui/unicode.stderr

27 lines
880 B
Text
Raw Normal View History

error: zero-width space detected
--> $DIR/unicode.rs:3:12
2018-10-06 18:18:06 +02:00
|
2018-12-27 16:57:55 +01:00
LL | print!("Here >< is a ZWS, and another");
2019-08-23 07:42:45 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider replacing the string with: `"Here >/u{200B}< is a ZWS, and /u{200B}another"`
2018-10-06 18:18:06 +02:00
|
= note: `-D clippy::zero-width-space` implied by `-D warnings`
2019-08-23 07:42:45 +02:00
error: non-NFC Unicode sequence detected
--> $DIR/unicode.rs:9:12
|
2018-12-27 16:57:55 +01:00
LL | print!("̀àh?");
2019-08-23 07:42:45 +02:00
| ^^^^^ help: consider replacing the string with: `"̀àh?"`
|
= note: `-D clippy::unicode-not-nfc` implied by `-D warnings`
error: literal non-ASCII character detected
--> $DIR/unicode.rs:15:12
|
2018-12-27 16:57:55 +01:00
LL | print!("Üben!");
2019-08-23 07:42:45 +02:00
| ^^^^^^^ help: consider replacing the string with: `"/u{dc}ben!"`
|
= note: `-D clippy::non-ascii-literal` implied by `-D warnings`
2018-01-16 17:06:27 +01:00
error: aborting due to 3 previous errors