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-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | print!("Here >< is a ZWS, and another");
2018-10-06 11:18:06 -05: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 09:57:55 -06:00
LL | print!("̀àh?");
2017-11-06 17:26:44 -06: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 09:57:55 -06:00
LL | print!("Üben!");
| ^^^^^^^
|
= note: `-D clippy::non-ascii-literal` implied by `-D warnings`
2018-01-16 10:06:27 -06:00
error: aborting due to 3 previous errors