Skip to content

Commit

Permalink
Add xfailed test case for #2354
Browse files Browse the repository at this point in the history
  • Loading branch information
catamorphism committed May 7, 2012
1 parent 4f105e4 commit 1460ea4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/test/compile-fail/issue-2354.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// xfail-test
/*
Ideally, the error about the missing close brace in foo would be reported
near the corresponding open brace. But currently it's reported at the end.
xfailed for now (see Issue #2354)
*/
fn foo() { //! ERROR this open brace is not closed
alt some(x) {
some(y) { fail; }
none { fail; }
}

fn bar() {
let mut i = 0;
while (i < 1000) {}
}

fn main() {}

0 comments on commit 1460ea4

Please sign in to comment.