xref: /minix3/external/bsd/llvm/dist/clang/test/SemaObjC/attr-print.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// RUN: %clang_cc1 %s -fobjc-arc -ast-print | FileCheck %s
2
3__strong id x;
4id y;
5__strong id z;
6
7// CHECK: __strong id x;
8// CHECK-NOT: __strong id y;
9// CHECK: __strong id z;
10