2015-06-11 09:35:00 +00:00
|
|
|
|
#![feature(plugin)]
|
|
|
|
|
#![plugin(clippy)]
|
|
|
|
|
|
|
|
|
|
#[deny(zero_width_space)]
|
|
|
|
|
fn zero() {
|
2015-08-11 18:22:20 +00:00
|
|
|
|
print!("Here >< is a ZWS, and another");
|
2015-08-12 08:46:49 +00:00
|
|
|
|
//~^ ERROR zero-width space detected. Consider using `\u{200B}`
|
|
|
|
|
//~^^ ERROR zero-width space detected. Consider using `\u{200B}`
|
2015-06-11 09:35:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//#[deny(unicode_canon)]
|
|
|
|
|
fn canon() {
|
2015-08-12 08:46:49 +00:00
|
|
|
|
print!("̀ah?"); //not yet ~ERROR non-canonical unicode sequence detected. Consider using à
|
2015-06-11 09:35:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//#[deny(ascii_only)]
|
|
|
|
|
fn uni() {
|
2015-08-11 18:22:20 +00:00
|
|
|
|
println!("Üben!"); //not yet ~ERROR Unicode literal detected. Consider using \u{FC}
|
2015-06-11 09:35:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2015-08-11 18:22:20 +00:00
|
|
|
|
zero();
|
|
|
|
|
uni();
|
|
|
|
|
canon();
|
2015-06-11 09:35:00 +00:00
|
|
|
|
}
|