Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Index / Inputs / objc.h
blobc671addde59f0590b3650b625d6436961ef79130
1 @interface Base {
2 int my_var;
4 -(int) my_var;
5 -(void) my_method: (int)param;
6 +(void) my_method: (int)param;
7 @end
9 @interface Sub : Base
10 -(void) my_method: (int)param;
11 @end