mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 23:20:39 +00:00
Add false positive checks to unicode test
This commit is contained in:
parent
e11fd49b1c
commit
fb148a50b2
1 changed files with 3 additions and 0 deletions
|
@ -5,16 +5,19 @@
|
||||||
fn zero() {
|
fn zero() {
|
||||||
print!("Here >< is a ZWS, and another");
|
print!("Here >< is a ZWS, and another");
|
||||||
//~^ ERROR zero-width space detected
|
//~^ ERROR zero-width space detected
|
||||||
|
print!("This\u{200B}is\u{200B}fine");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[deny(unicode_not_nfc)]
|
#[deny(unicode_not_nfc)]
|
||||||
fn canon() {
|
fn canon() {
|
||||||
print!("̀àh?"); //~ERROR non-nfc unicode sequence detected
|
print!("̀àh?"); //~ERROR non-nfc unicode sequence detected
|
||||||
|
print!("a\u{0300}h?"); // also okay
|
||||||
}
|
}
|
||||||
|
|
||||||
#[deny(non_ascii_literal)]
|
#[deny(non_ascii_literal)]
|
||||||
fn uni() {
|
fn uni() {
|
||||||
print!("Üben!"); //~ERROR literal non-ASCII character detected
|
print!("Üben!"); //~ERROR literal non-ASCII character detected
|
||||||
|
print!("\u{DC}ben!"); // this is okay
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
|
Loading…
Reference in a new issue