rust/tests/ui/unicode.stderr

33 lines
1.1 KiB
Plaintext
Raw Normal View History

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