1
Fork 0

Un-XFAIL fail-arg

This commit is contained in:
Tim Chevalier 2011-07-03 11:56:23 -07:00
parent 046c25dbc0
commit b110bbf886

View file

@ -1,11 +1,9 @@
// xfail-stage0 // xfail-stage0
// xfail-stage1 // error-pattern:woe
// xfail-stage2
// error-pattern:explicit failure
fn f(int a) { fn f(int a) {
log a; log a;
} }
fn main() { fn main() {
f(fail); f(fail "woe");
} }