Home | History | Annotate | Download | only in Rewriter
      1 // RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -
      2 
      3 @interface MyDerived
      4 - (void) instanceMethod;
      5 @end
      6 
      7 @implementation MyDerived
      8 - (void) instanceMethod {
      9 }
     10 @end
     11 
     12