Skip to content

Commit 20c6f3c

Browse files
committed
Add xfailed test case for #3029
1 parent c8ea9fc commit 20c6f3c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// xfail-test
2+
fn fail_then_concat() {
3+
let x = ~[], y = ~[3];
4+
fail;
5+
x += y;
6+
~"good" + ~"bye";
7+
}
8+

0 commit comments

Comments
 (0)