super-classmethod-category.m 189 Bytes Raw Blame History Permalink 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