rust/tests/compile-fail/unicode.rs

25 lines
450 B
Rust
Raw Normal View History

2015-06-11 17:35:00 +08:00
#![feature(plugin)]
#![plugin(clippy)]
#[deny(zero_width_space)]
fn zero() {
print!("Here >< is a ZWS, and another");
//~^ ERROR zero-width space detected
2015-06-11 17:35:00 +08:00
}
#[deny(unicode_not_nfc)]
2015-06-11 17:35:00 +08:00
fn canon() {
print!("̀àh?"); //~ERROR non-nfc unicode sequence detected
2015-06-11 17:35:00 +08:00
}
#[deny(non_ascii_literal)]
2015-06-11 17:35:00 +08:00
fn uni() {
print!("Üben!"); //~ERROR literal non-ASCII character detected
2015-06-11 17:35:00 +08:00
}
fn main() {
zero();
uni();
canon();
2015-06-11 17:35:00 +08:00
}