10 lines
178 B
Rust
10 lines
178 B
Rust
#[no_mangle]
|
|
fn foo() {}
|
|
|
|
fn main() {
|
|
extern "Rust" {
|
|
fn foo(_: i32);
|
|
}
|
|
unsafe { foo(1) } //~ ERROR calling a function with more arguments than it expected
|
|
}
|