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