summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfc-2457/extern_block_nonascii_forbidden.rs
blob: ad6825404306a2f1f3440ebca24341b46ad8ed7b (plain)
1
2
3
4
5
6
7
8
9
#![feature(extern_types)]

extern "C" {
    type ; //~ items in `extern` blocks cannot use non-ascii identifiers
    fn (); //~ items in `extern` blocks cannot use non-ascii identifiers
    static : usize; //~ items in `extern` blocks cannot use non-ascii identifiers
}

fn main() {}