9 lines
112 B
Rust
9 lines
112 B
Rust
// xfail-test
|
|
fn fail_then_concat() {
|
|
let x = ~[], y = ~[3];
|
|
fail;
|
|
x += y;
|
|
~"good" + ~"bye";
|
|
}
|
|
|