blob: 2d56a4de6be8f1c1b9b54492ab84714e83beb60e [file] [log] [blame]
__attribute__((objc_root_class))
@interface Base
@end
@protocol Foo
@property (readonly) id foo;
@end
@interface Sub : Base
@end
@interface Sub (Cat1) <Foo>
@end
@interface Sub (Cat2)
@property id foo;
@end