]> git.lizzy.rs Git - rust.git/blob - tests/ui/unicode.stderr
iterate List by value
[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    |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider replacing the string with: `"Here >/u{200B}< is a ZWS, and /u{200B}another"`
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    |            ^^^^^ help: consider replacing the string with: `"̀àh?"`
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    |            ^^^^^^^ help: consider replacing the string with: `"/u{dc}ben!"`
22    |
23    = note: `-D clippy::non-ascii-literal` implied by `-D warnings`
24
25 error: aborting due to 3 previous errors
26