1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
12 lines
177 B
Objective-C
12 lines
177 B
Objective-C
@interface Base {
|
|
int my_var;
|
|
}
|
|
-(int) my_var;
|
|
-(void) my_method: (int)param;
|
|
+(void) my_method: (int)param;
|
|
@end
|
|
|
|
@interface Sub : Base
|
|
-(void) my_method: (int)param;
|
|
@end
|