Home | History | Annotate | Download | only in ARCMT
      1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -fobjc-arc -x objective-c %s.result
      2 // RUN: arcmt-test --args -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c %s > %t
      3 // RUN: diff %t %s.result
      4 
      5 @interface A
      6 - (id)retain;
      7 - (id)autorelease;
      8 - (oneway void)release;
      9 - (void)dealloc;
     10 @end
     11 
     12 void test1(A *a) {
     13   [a dealloc];
     14 }
     15 
     16 @interface Test2 : A
     17 - (void) dealloc;
     18 @end
     19 
     20 @implementation Test2
     21 - (void) dealloc {
     22   [super dealloc];
     23 }
     24 @end
     25