summary refs log tree commit diff
path: root/src/test/run-fail/args-fail.rs
blob: a28762aa9c2914da17870bd597fc302031bb399c (plain)
1
2
3
4
// error-pattern:meep
fn f(a: int, b: int, c: @int) { fail ~"moop"; }

fn main() { f(1, fail ~"meep", @42); }