]> git.lizzy.rs Git - rust.git/blob - tests/ui/unicode.stderr
Auto merge of #4137 - euclio:let-return, r=oli-obk
[rust.git] / tests / ui / unicode.stderr
1 error: zero-width space detected
2   --> $DIR/unicode.rs:3:12
3    |
4 LL |     print!("Here >​< is a ZWS, and ​another");
5    |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D clippy::zero-width-space` implied by `-D warnings`
8
9 error: non-nfc unicode sequence detected
10   --> $DIR/unicode.rs:9:12
11    |
12 LL |     print!("̀àh?");
13    |            ^^^^^
14    |
15    = note: `-D clippy::unicode-not-nfc` implied by `-D warnings`
16
17 error: literal non-ASCII character detected
18   --> $DIR/unicode.rs:15:12
19    |
20 LL |     print!("Üben!");
21    |            ^^^^^^^
22    |
23    = note: `-D clippy::non-ascii-literal` implied by `-D warnings`
24
25 error: aborting due to 3 previous errors
26