diff options
Diffstat (limited to 'test/Modules/Inputs/DebugObjC.h')
-rw-r--r-- | test/Modules/Inputs/DebugObjC.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/Modules/Inputs/DebugObjC.h b/test/Modules/Inputs/DebugObjC.h new file mode 100644 index 0000000..bde463a --- /dev/null +++ b/test/Modules/Inputs/DebugObjC.h @@ -0,0 +1,24 @@ +@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 |