rust/src/test/run-fail/args-fail.rs

5 lines
108 B
Rust
Raw Normal View History

// error-pattern:meep
2011-07-27 14:19:39 +02:00
fn f(a: int, b: int, c: @int) { fail "moop"; }
fn main() { f(1, fail "meep", @42); }