llvm-project/clang/test/Modules/Inputs/DebugObjC.h

12 lines
169 B
Objective-C

@interface ObjCClass {
int ivar;
}
+ classMethod;
- instanceMethodWithInt:(int)i;
@property int property;
@end
@interface ObjCClass (Category)
- categoryMethod;
@end