e318328d63
* 4-space indentation * no trailing whitespace * no tabs
26 lines
628 B
Rust
Executable File
26 lines
628 B
Rust
Executable File
#![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}
|
||
}
|
||
|
||
//#[deny(unicode_canon)]
|
||
fn canon() {
|
||
print!("̀ah?"); //not yet ~ERROR Non-canonical unicode sequence detected. Consider using à
|
||
}
|
||
|
||
//#[deny(ascii_only)]
|
||
fn uni() {
|
||
println!("Üben!"); //not yet ~ERROR Unicode literal detected. Consider using \u{FC}
|
||
}
|
||
|
||
fn main() {
|
||
zero();
|
||
uni();
|
||
canon();
|
||
}
|