Make most tests an example
so we can run them one by one
This commit is contained in:
parent
ed909cadd6
commit
4465bc3e3f
284 changed files with 4055 additions and 3945 deletions
|
@ -1,26 +0,0 @@
|
|||
#![feature(plugin)]
|
||||
#![plugin(clippy)]
|
||||
|
||||
#[deny(zero_width_space)]
|
||||
fn zero() {
|
||||
print!("Here >< is a ZWS, and another");
|
||||
print!("This\u{200B}is\u{200B}fine");
|
||||
}
|
||||
|
||||
#[deny(unicode_not_nfc)]
|
||||
fn canon() {
|
||||
print!("̀àh?");
|
||||
print!("a\u{0300}h?"); // also okay
|
||||
}
|
||||
|
||||
#[deny(non_ascii_literal)]
|
||||
fn uni() {
|
||||
print!("Üben!");
|
||||
print!("\u{DC}ben!"); // this is okay
|
||||
}
|
||||
|
||||
fn main() {
|
||||
zero();
|
||||
uni();
|
||||
canon();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue