rust/tests/compile-fail/unicode.rs

26 lines
626 B
Rust
Raw Normal View History

2015-06-11 11:35:00 +02:00
#![feature(plugin)]
#![plugin(clippy)]
#[deny(zero_width_space)]
fn zero() {
print!("Here >< is a ZWS, and another");
//~^ ERROR zero-width space detected. Consider using `\u{200B}`
//~^^ ERROR zero-width space detected. Consider using `\u{200B}`
2015-06-11 11:35:00 +02:00
}
//#[deny(unicode_canon)]
fn canon() {
print!("̀ah?"); //not yet ~ERROR non-canonical unicode sequence detected. Consider using à
2015-06-11 11:35:00 +02:00
}
#[deny(non_ascii_literal)]
2015-06-11 11:35:00 +02:00
fn uni() {
print!("Üben!"); //~ERROR literal non-ASCII character detected. Consider using `\u{DC}`
2015-06-11 11:35:00 +02:00
}
fn main() {
zero();
uni();
canon();
2015-06-11 11:35:00 +02:00
}