]> git.lizzy.rs Git - rust.git/commitdiff
Add false positive checks to unicode test
authorManish Goregaokar <manishsmail@gmail.com>
Fri, 4 Sep 2015 10:57:53 +0000 (16:27 +0530)
committerManish Goregaokar <manishsmail@gmail.com>
Fri, 4 Sep 2015 10:57:53 +0000 (16:27 +0530)
tests/compile-fail/unicode.rs

index 066825fc686f0f1ec211f59bf9d17ee728a1f7aa..44bc9f1b1999fd591f7ab54b5ba6ed7f95e9f24a 100755 (executable)
@@ -5,16 +5,19 @@
 fn zero() {
     print!("Here >​< is a ZWS, and ​another");
                //~^ ERROR zero-width space detected
+    print!("This\u{200B}is\u{200B}fine");
 }
 
 #[deny(unicode_not_nfc)]
 fn canon() {
     print!("̀àh?"); //~ERROR non-nfc unicode sequence detected
+    print!("a\u{0300}h?"); // also okay
 }
 
 #[deny(non_ascii_literal)]
 fn uni() {
     print!("Üben!"); //~ERROR literal non-ASCII character detected
+    print!("\u{DC}ben!"); // this is okay 
 }
 
 fn main() {