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

7 lines
109 B
Rust
Raw Normal View History

// error-pattern:expected function or foreign function but found *u8
crust fn f() {
}
fn main() {
f();
}