[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / PCH / objc_stmts.h
blob5f705dfcdbb729cc88d155d4978749abe63fa36c
1 /* For use with the methods.m test */
3 @interface A
4 @end
6 @interface B
7 @end
9 @interface TestPCH
10 - (void)instMethod;
11 @end
13 @implementation TestPCH
14 - (void)instMethod {
15 @try {
16 } @catch(A *a) {
17 } @catch(B *b) {
18 } @catch(...) {
19 } @finally {
22 @end