rust/tests/ui/rfc-2457/extern_block_nonascii_forbidden.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
293 B
Rust
Raw Normal View History

#![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() {}