summaryrefslogtreecommitdiffstats
path: root/test/CodeGenObjC/super-classmethod-category.m
blob: 64ba1419c0f4f5d7f7ed8a7d9ddaf24874a94a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: clang -cc1 -emit-llvm -o %t %s

@interface SUPER
+ (void)Meth;
@end

@interface CURRENT : SUPER
+ (void)Meth;
@end

@implementation CURRENT(CAT)
+ (void)Meth { [super Meth]; }
@end