summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/unicode.rs
blob: 27db9594f3b3305c7385ccea3506a22f534740f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#[warn(clippy::zero_width_space)]
fn zero() {
    print!("Here >​< is a ZWS, and ​another");
    print!("This\u{200B}is\u{200B}fine");
}

#[warn(clippy::unicode_not_nfc)]
fn canon() {
    print!("̀àh?");
    print!("a\u{0300}h?"); // also ok
}

#[warn(clippy::non_ascii_literal)]
fn uni() {
    print!("Üben!");
    print!("\u{DC}ben!"); // this is ok
}

fn main() {
    zero();
    uni();
    canon();
}