blob: 352ada202e2adcff964b4dc6674f4c236e57dbe9 [file]
// xfail-test
fn fail_then_concat() {
let x = ~[], y = ~[3];
fail;
x += y;
~"good" + ~"bye";
}