]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/unicode.stderr
Addition `manual_map` test for `unsafe` blocks
[rust.git] / tests / ui / unicode.stderr
index 407220d1ae0773d340abf641e827685b78ba1ac6..3fca463c620b522659335917cf78e0a2a5baeb24 100644 (file)
@@ -1,40 +1,38 @@
-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: invisible character detected
+  --> $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"`
+   |
+   = note: `-D clippy::invisible-characters` implied by `-D warnings`
 
-error: non-nfc unicode sequence detected
-  --> $DIR/unicode.rs:13:12
+error: invisible character detected
+  --> $DIR/unicode.rs:5:12
+   |
+LL |     print!("Here >­< is a SHY, and ­another");
+   |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider replacing the string with: `"Here >/u{AD}< is a SHY, and /u{AD}another"`
+
+error: invisible character detected
+  --> $DIR/unicode.rs:7:12
    |
-13 |     print!("̀àh?");
-   |            ^^^^^^^
+LL |     print!("Here >⁠< is a WJ, and ⁠another");
+   |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider replacing the string with: `"Here >/u{2060}< is a WJ, and /u{2060}another"`
+
+error: non-NFC Unicode sequence detected
+  --> $DIR/unicode.rs:13:12
    |
-note: lint level defined here
-  --> $DIR/unicode.rs:11:8
+LL |     print!("̀àh?");
+   |            ^^^^^ help: consider replacing the string with: `"̀àh?"`
    |
-11 | #[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:19:12
    |
-19 |     print!("Üben!");
-   |            ^^^^^^^
-   |
-note: lint level defined here
-  --> $DIR/unicode.rs:17:8
+LL |     print!("Üben!");
+   |            ^^^^^^^ help: consider replacing the string with: `"/u{dc}ben!"`
    |
-17 | #[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
+error: aborting due to 5 previous errors