]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/unicode.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[rust.git] / tests / ui / unicode.stderr
index 62ada6fcb1c287c2bfd33e7329c03023a7f2b926..4575a132e5b2c8de599253e5e944993133443138 100644 (file)
@@ -1,40 +1,26 @@
 error: zero-width space detected
- --> $DIR/unicode.rs:6:12
-  |
-6 |     print!("Here >​< is a ZWS, and ​another");
-  |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-  |
-  = note: #[deny(zero_width_space)] on by default
-  = help: Consider replacing the string with:
-          ""Here >/u{200B}< is a ZWS, and /u{200B}another""
-
-error: non-nfc unicode sequence detected
-  --> $DIR/unicode.rs:12:12
+  --> $DIR/unicode.rs:3:12
+   |
+LL |     print!("Here >​< is a ZWS, and ​another");
+   |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider replacing the string with: `"Here >/u{200B}< is a ZWS, and /u{200B}another"`
    |
-12 |     print!("̀àh?");
-   |            ^^^^^^^
+   = note: `-D clippy::zero-width-space` implied by `-D warnings`
+
+error: non-NFC Unicode sequence detected
+  --> $DIR/unicode.rs:9:12
    |
-note: lint level defined here
-  --> $DIR/unicode.rs:10:8
+LL |     print!("̀àh?");
+   |            ^^^^^ help: consider replacing the string with: `"̀àh?"`
    |
-10 | #[deny(unicode_not_nfc)]
-   |        ^^^^^^^^^^^^^^^
-   = help: Consider replacing the string with:
-           ""̀àh?""
+   = note: `-D clippy::unicode-not-nfc` implied by `-D warnings`
 
 error: literal non-ASCII character detected
-  --> $DIR/unicode.rs:18:12
-   |
-18 |     print!("Üben!");
-   |            ^^^^^^^
+  --> $DIR/unicode.rs:15:12
    |
-note: lint level defined here
-  --> $DIR/unicode.rs:16:8
+LL |     print!("Üben!");
+   |            ^^^^^^^ help: consider replacing the string with: `"/u{dc}ben!"`
    |
-16 | #[deny(non_ascii_literal)]
-   |        ^^^^^^^^^^^^^^^^^
-   = help: Consider replacing the string with:
-           ""/u{dc}ben!""
+   = note: `-D clippy::non-ascii-literal` implied by `-D warnings`
 
 error: aborting due to 3 previous errors