2022-12-27 17:10:21 +00:00
|
|
|
extern "Rust" {
|
|
|
|
fn dstfn(src: i32, dst: err);
|
|
|
|
//~^ ERROR cannot find type `err` in this scope
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
dstfn(1);
|
2023-01-05 03:02:10 +00:00
|
|
|
//~^ ERROR function takes 2 arguments but 1 argument was supplied
|
2022-12-27 17:10:21 +00:00
|
|
|
}
|