blob: 27cdbf6aed41885a3ad39937734a237fe8ef183d [file] [log] [blame]
// RUN: clang-cc -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