blob: b8ba45ee64f6606d91cc05c01f18669d6d595c79 [file] [log] [blame]
Steve Naroff20ebf8f2008-01-19 00:42:38 +00001// RUN: clang -rewrite-test %s | clang
2
3@interface foo @end
4@interface GARF @end
5
6int main()
7{
8
9@try {
10 MYTRY();
11}
12
13@catch (foo* localException) {
14 MYCATCH();
15 @throw;
16}
17}
18