mirror of https://github.com/rust-lang/rust.git
10 lines
311 B
Rust
10 lines
311 B
Rust
#![feature(extern_types)]
|
|
|
|
extern "C" {
|
|
type 一; //~ ERROR items in `extern` blocks cannot use non-ascii identifiers
|
|
fn 二(); //~ ERROR items in `extern` blocks cannot use non-ascii identifiers
|
|
static 三: usize; //~ ERROR items in `extern` blocks cannot use non-ascii identifiers
|
|
}
|
|
|
|
fn main() {}
|