1
Fork 0

Move all our tests back to ui tests

This commit is contained in:
Oliver Schneider 2017-08-01 17:54:21 +02:00
parent 5595027018
commit 74c776585c
397 changed files with 1527 additions and 1679 deletions

26
tests/ui/unicode.rs Normal file
View file

@ -0,0 +1,26 @@
#![feature(plugin)]
#![plugin(clippy)]
#[warn(zero_width_space)]
fn zero() {
print!("Here >< is a ZWS, and another");
print!("This\u{200B}is\u{200B}fine");
}
#[warn(unicode_not_nfc)]
fn canon() {
print!("̀àh?");
print!("a\u{0300}h?"); // also okay
}
#[warn(non_ascii_literal)]
fn uni() {
print!("Üben!");
print!("\u{DC}ben!"); // this is okay
}
fn main() {
zero();
uni();
canon();
}