summaryrefslogtreecommitdiffstats
path: root/tests/ui/utf8_idents.rs
blob: 1f6326dd94b5ce31450ff3700ff81d3662495a75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// check-pass
//
#![allow(mixed_script_confusables, non_camel_case_types)]

fn foo<
    'β,
    γ
>() {}

struct X {
    δ: usize
}

pub fn main() {
    let α = 0.00001f64;
}