Home | History | Annotate | Download | only in CodeGenObjC
      1 // RUN: %clang_cc1 -emit-llvm -o %t %s
      2 
      3 @interface SUPER
      4 + (void)Meth;
      5 @end
      6 
      7 @interface CURRENT : SUPER
      8 + (void)Meth;
      9 @end
     10 
     11 @implementation CURRENT(CAT)
     12 + (void)Meth { [super Meth]; }
     13 @end
     14