Add xfailed test case for #3029

This commit is contained in:
Tim Chevalier 2012-07-26 14:51:10 -07:00
parent c8ea9fc4c3
commit 20c6f3c37a

View File

@ -0,0 +1,8 @@
// xfail-test
fn fail_then_concat() {
let x = ~[], y = ~[3];
fail;
x += y;
~"good" + ~"bye";
}