blob: 2e9efde438224efa36b84a29a5c4c4a8b0f8548b [file] [log] [blame]
Fariborz Jahanianbac73ac2009-02-28 20:07:56 +00001// RUN: clang -fnext-runtime -emit-llvm -o %t %s
2
3@interface SUPER
4+ (void)Meth;
5@end
6
7@interface CURRENT : SUPER
8+ (void)Meth;
9@end
10
11@implementation CURRENT(CAT)
12+ (void)Meth { [super Meth]; }
13@end