Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-pass
/
issue-3029.rs
blob: 352ada202e2adcff964b4dc6674f4c236e57dbe9 [
file
]
// xfail-test
fn
fail_then_concat
()
{
let
x
=
~[],
y
=
~[
3
];
fail
;
x
+=
y
;
~
"good"
+
~
"bye"
;
}