blob: 7d85fe30aefaa10e23636c106d139a2081d74cd3 [file] [log] [blame]
Daniel Dunbard47ea692011-03-17 23:28:31 +00001// RUN: %clang -ccc-host-triple x86_64-apple-darwin9 \
2// RUN: -fsyntax-only -fno-exceptions %s
3
4void f1() {
5 @throw @"A";
6}
7
8void f0() {
9 @try {
10 f1();
11 } @catch (id x) {
12 ;
13 }
14}
15
16int main() {
17 f0();
18 return 0;
19}