]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/unicode.rs
Addition `manual_map` test for `unsafe` blocks
[rust.git] / tests / ui / unicode.rs
index deec885b85d84ce5c38f0940d4607ff32fbd6dba..1f596c312fe395783208b6ab34ffd8fab27d8204 100644 (file)
@@ -1,19 +1,23 @@
-#[warn(clippy::zero_width_space)]
+#[warn(clippy::invisible_characters)]
 fn zero() {
     print!("Here >​< is a ZWS, and ​another");
     print!("This\u{200B}is\u{200B}fine");
+    print!("Here >­< is a SHY, and ­another");
+    print!("This\u{ad}is\u{ad}fine");
+    print!("Here >⁠< is a WJ, and ⁠another");
+    print!("This\u{2060}is\u{2060}fine");
 }
 
 #[warn(clippy::unicode_not_nfc)]
 fn canon() {
     print!("̀àh?");
-    print!("a\u{0300}h?"); // also okay
+    print!("a\u{0300}h?"); // also ok
 }
 
 #[warn(clippy::non_ascii_literal)]
 fn uni() {
     print!("Üben!");
-    print!("\u{DC}ben!"); // this is okay
+    print!("\u{DC}ben!"); // this is ok
 }
 
 fn main() {