rust/src/test/compile-fail/not-enough-arguments.rs
Gareth Daniel Smith 6d86969260 change the test suite //! kind syntax to //~ kind in order to avoid a
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
2012-06-30 12:23:59 +01:00

13 lines
256 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: int, b: int, c: int, d:int) {
fail;
}
fn main() {
foo(1, 2, 3);
//~^ ERROR this function takes 4 parameters but 3
}