rust/tests/ui/issues/issue-4935.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
165 B
Rust
Raw Normal View History

2013-05-08 17:34:47 +00:00
// Regression test for issue #4935
fn foo(a: usize) {}
//~^ defined here
fn main() { foo(5, 6) }
//~^ ERROR function takes 1 argument but 2 arguments were supplied