rust/src/test/run-pass/issue-3029.rs

9 lines
112 B
Rust
Raw Normal View History

2012-07-26 16:51:10 -05:00
// xfail-test
fn fail_then_concat() {
let x = ~[], y = ~[3];
fail;
x += y;
~"good" + ~"bye";
}