[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Rewriter / objc-super-test.m
blob68412d899b9c5703514d16543a7d8937a4301a83
1 // RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o - | grep objc_msgSendSuper | grep MainMethod
3 typedef struct objc_selector    *SEL;
4 typedef struct objc_object *id;
6 @interface SUPER
7 - (int) MainMethod;
8 @end
10 @interface MyDerived : SUPER
11 - (int) instanceMethod;
12 @end
14 @implementation MyDerived 
15 - (int) instanceMethod {
16   return [super MainMethod];
18 @end