rust/tests/ui/unicode.stderr

39 lines
1.4 KiB
Text
Raw Normal View History

2020-10-03 00:03:33 +02:00
error: invisible character 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
|
2020-10-03 00:03:33 +02:00
= note: `-D clippy::invisible-characters` implied by `-D warnings`
2020-10-03 00:03:33 +02:00
error: invisible character detected
2020-10-02 11:54:31 +02: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"`
2020-10-03 00:07:56 +02:00
error: invisible character detected
--> $DIR/unicode.rs:7:12
|
LL | print!("Here >< is a WJ, and another");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider replacing the string with: `"Here >/u{2060}< is a WJ, and /u{2060}another"`
2019-08-23 07:42:45 +02:00
error: non-NFC Unicode sequence detected
2020-10-03 00:07:56 +02:00
--> $DIR/unicode.rs:13: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
2020-10-03 00:07:56 +02:00
--> $DIR/unicode.rs:19: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`
2020-10-03 00:07:56 +02:00
error: aborting due to 5 previous errors
2018-01-16 17:06:27 +01:00