blob: 033bc972a348aced1461d1979c8efcd4b0e442a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// RUN: clang-cc -emit-llvm -o %t %s
@interface SUPER
+ (void)Meth;
@end
@interface CURRENT : SUPER
+ (void)Meth;
@end
@implementation CURRENT(CAT)
+ (void)Meth { [super Meth]; }
@end
|