testsuite: Un-xfail test for #3029 and move to run-fail

This commit is contained in:
Tim Chevalier 2013-01-20 20:33:54 -08:00
parent b9920b052b
commit 885f0a2eab

View file

@ -8,11 +8,10 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// xfail-test
fn fail_then_concat() {
// error-pattern:so long
fn main() {
let x = ~[], y = ~[3];
fail;
fail ~"so long";
x += y;
~"good" + ~"bye";
}