summaryrefslogtreecommitdiffstats
path: root/test/CodeGenObjC/category-super-class-meth.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenObjC/category-super-class-meth.m')
-rw-r--r--test/CodeGenObjC/category-super-class-meth.m19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/CodeGenObjC/category-super-class-meth.m b/test/CodeGenObjC/category-super-class-meth.m
new file mode 100644
index 0000000..95d8b31
--- /dev/null
+++ b/test/CodeGenObjC/category-super-class-meth.m
@@ -0,0 +1,19 @@
+// RUN: clang-cc -fnext-runtime -emit-llvm -o %t %s
+
+@interface BASE
++ (int) BaseMeth;
+@end
+
+@interface Child: BASE
+@end
+
+@interface Child (Categ)
++ (int) flushCache2;
+@end
+
+@implementation Child @end
+
+@implementation Child (Categ)
++ (int) flushCache2 { [super BaseMeth]; }
+@end
+
OpenPOWER on IntegriCloud