Skip to content

Commit

Permalink
new test case
Browse files Browse the repository at this point in the history
  • Loading branch information
Francois Berenger committed Jul 30, 2014
1 parent 02a06cb commit f29d76f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions plugin/testsuite/ObjCAtTryStmt.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
void bar() {

int i;

@try {
i = 1;
}
@catch (id anException) {
i = 2;
}
@finally {
i = 3;
}

@try {
i = 1;
}
@catch (id anException) {
i = 2;
}
}

0 comments on commit f29d76f

Please sign in to comment.