Home | History | Annotate | Download | only in Rewriter
      1 // RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -
      2 
      3 @interface Derived @end
      4 
      5 int main(void) {
      6   Derived *v ;
      7   [v free];
      8   return 0;
      9 }
     10