Files
rust/tests/ui/unicode.stderr

33 lines
1.1 KiB
Plaintext
Raw Normal View History

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