rust/src/test/ui/parser/extern-no-fn.rs

8 lines
110 B
Rust
Raw Normal View History

extern {
//~^ ERROR missing `fn`, `type`, `const`, or `static` for item declaration
f();
2013-05-22 02:11:48 -05:00
}
fn main() {
}