rust/src/test/ui/not-enough-arguments.rs
2020-02-11 12:42:00 -08:00

13 lines
267 B
Rust

// Check that the only error msg we report is the
// mismatch between the # of params, and not other
// unrelated errors.
fn foo(a: isize, b: isize, c: isize, d:isize) {
panic!();
}
fn main() {
foo(1, 2, 3);
//~^ ERROR this function takes 4 arguments but 3
}