android_mt6572_jiabo/external/clang/test/Modules/Inputs/DebugObjC.h
2025-09-05 16:56:03 +08:00

24 lines
328 B
Objective-C

@class FwdDecl;
@interface ObjCClass {
int ivar;
}
+ classMethod;
- instanceMethodWithInt:(int)i;
- (struct OpaqueData*) getSomethingOpaque;
@property int property;
@end
@interface ObjCClass (Category)
- categoryMethod;
@end
@protocol ObjCProtocol
typedef enum {
e0 = 0
} InnerEnum;
+ (InnerEnum)protocolMethod;
@end