rust/src/test/ui/issues/issue-4935.rs
2020-02-11 12:42:00 -08:00

6 lines
170 B
Rust

// Regression test for issue #4935
fn foo(a: usize) {}
//~^ defined here
fn main() { foo(5, 6) }
//~^ ERROR this function takes 1 argument but 2 arguments were supplied