]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/unicode.rs
Auto merge of #8374 - Alexendoo:bless-revisions, r=camsteffen
[rust.git] / tests / ui / unicode.rs
index 55dd0862700d9f65e8a91e44755d6713cd62b3a1..e0a4eadce33bd109bfd67f1ac8212f363a896811 100644 (file)
@@ -1,26 +1,35 @@
-#![feature(plugin)]
-#![plugin(clippy)]
-
-#[warn(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(unicode_not_nfc)]
+#[warn(clippy::unicode_not_nfc)]
 fn canon() {
     print!("̀àh?");
-    print!("a\u{0300}h?"); // also okay
+    print!("a\u{0300}h?"); // also ok
 }
 
-#[warn(non_ascii_literal)]
+#[warn(clippy::non_ascii_literal)]
 fn uni() {
     print!("Üben!");
-    print!("\u{DC}ben!"); // this is okay
+    print!("\u{DC}ben!"); // this is ok
+}
+
+// issue 8013
+#[warn(clippy::non_ascii_literal)]
+fn single_quote() {
+    const _EMPTY_BLOCK: char = '▱';
+    const _FULL_BLOCK: char = '▰';
 }
 
 fn main() {
     zero();
     uni();
     canon();
+    single_quote();
 }