rust/src/test/compile-fail/extern-no-call.rs

7 lines
110 B
Rust
Raw Normal View History

// error-pattern:expected function or foreign function but found *u8
2012-07-03 18:32:02 -05:00
extern fn f() {
}
fn main() {
f();
}