summary refs log tree commit diff
path: root/src/test/compile-fail/not-enough-arguments.rs
blob: 36480253c97fac823fe214f7f607f14bc11a9bb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Check that the only error msg we report is the
// mismatch between the # of params, and not other
// unrelated errors.

fn foo(a: int, b: int, c: int, d:int) {
  fail;
}

fn main() {
  foo(1, 2, 3);
  //~^ ERROR this function takes 4 parameters but 3
}