summaryrefslogtreecommitdiffstats
path: root/test/CodeGenObjC/super-classmethod-category.m
blob: 27cdbf6aed41885a3ad39937734a237fe8ef183d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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
OpenPOWER on IntegriCloud