rust/tests/ui/unicode.stderr

27 lines
678 B
Plaintext
Raw Normal View History

error: zero-width space detected
--> $DIR/unicode.rs:3:12
2018-10-07 00:18:06 +08:00
|
2018-12-27 23:57:55 +08:00
LL | print!("Here >< is a ZWS, and another");
2018-10-07 00:18:06 +08:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::zero-width-space` implied by `-D warnings`
error: non-nfc unicode sequence detected
--> $DIR/unicode.rs:9:12
|
2018-12-27 23:57:55 +08:00
LL | print!("̀àh?");
2017-11-07 07:26:44 +08:00
| ^^^^^
|
= note: `-D clippy::unicode-not-nfc` implied by `-D warnings`
error: literal non-ASCII character detected
--> $DIR/unicode.rs:15:12
|
2018-12-27 23:57:55 +08:00
LL | print!("Üben!");
| ^^^^^^^
|
= note: `-D clippy::non-ascii-literal` implied by `-D warnings`
2018-01-17 00:06:27 +08:00
error: aborting due to 3 previous errors