summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/non_ascii_ident.rs
blob: 9c897147518265ab9b7edb09232ef02fa59dfe8a (plain)
1
2
3
4
5
6
7
fn main() {
    // There shall be no suggestions here. In particular not `Ok`.
    let _ = 读文; //~ ERROR cannot find value `读文` in this scope

    let f = 0f32; // Important line to make this an ICE regression test
    读文(f); //~ ERROR cannot find function `读文` in this scope
}