[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / PCH / method_pool.h
blob80858360d7254cdbe329fd258bf67c266dbac905
1 /* For use with the method_pool.m test */
3 /* Whitespace below is significant */
15 @interface TestMethodPool1
16 + alloc;
17 - (double)instMethod:(int)foo;
18 @end
20 @interface TestMethodPool2
21 - (char)instMethod:(int)foo;
22 @end
24 @implementation TestMethodPool1
25 + alloc { return 0; }
27 - (double)instMethod:(int)foo {
28 return foo;
30 @end
32 @implementation TestMethodPool2
33 - (char)instMethod:(int)foo {
34 return foo;
36 @end