Home | History | Annotate | Download | only in CodeGenObjC
      1 // RUN: %clang_cc1 -emit-llvm -o %t %s
      2 
      3 @interface BASE
      4 + (int) BaseMeth;
      5 @end
      6 
      7 @interface Child: BASE
      8 @end
      9 
     10 @interface Child (Categ)
     11 + (int) flushCache2;
     12 @end
     13 
     14 @implementation Child  @end
     15 
     16 @implementation Child (Categ)
     17 + (int) flushCache2 { [super BaseMeth]; }
     18 @end
     19 
     20