Home | History | Annotate | Download | only in SemaObjC
      1 // RUN: %clang_cc1 %s -fobjc-arc -ast-print | FileCheck %s
      2 
      3 __strong id x;
      4 id y;
      5 __strong id z;
      6 
      7 // CHECK: __strong id x;
      8 // CHECK-NOT: __strong id y;
      9 // CHECK: __strong id z;
     10