blob: eaad158d66341a43f83180b21846abc8fe8cd240 [file] [log] [blame]
Steve Naroffdd79d6f2008-03-12 02:07:40 +00001// RUN: clang -rewrite-test %s
Steve Naroffbe72efa2008-01-19 00:42:38 +00002
Steve Naroff929c77e2008-02-01 20:02:07 +00003@interface Foo @end
Steve Naroffbe72efa2008-01-19 00:42:38 +00004@interface GARF @end
5
Steve Naroff929c77e2008-02-01 20:02:07 +00006void foo() {
7 @try { TRY(); }
8 @catch (...) { SPLATCH(); @throw; }
9}
10
Steve Naroffbe72efa2008-01-19 00:42:38 +000011int main()
12{
13
14@try {
15 MYTRY();
16}
17
Steve Naroff929c77e2008-02-01 20:02:07 +000018@catch (Foo* localException) {
Steve Naroffbe72efa2008-01-19 00:42:38 +000019 MYCATCH();
20 @throw;
21}
22}
23