blob: 2e9efde438224efa36b84a29a5c4c4a8b0f8548b [file] [log] [blame]
// RUN: clang -fnext-runtime -emit-llvm -o %t %s
@interface SUPER
+ (void)Meth;
@end
@interface CURRENT : SUPER
+ (void)Meth;
@end
@implementation CURRENT(CAT)
+ (void)Meth { [super Meth]; }
@end