From fb148a50b2766d1baf2a7e75474939d0f02e27ac Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Fri, 4 Sep 2015 16:27:53 +0530 Subject: [PATCH] Add false positive checks to unicode test --- tests/compile-fail/unicode.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/compile-fail/unicode.rs b/tests/compile-fail/unicode.rs index 066825fc6..44bc9f1b1 100755 --- a/tests/compile-fail/unicode.rs +++ b/tests/compile-fail/unicode.rs @@ -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() {