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