xref: /llvm-project/clang/test/SemaObjC/attr-print.m (revision a86d88c7cdc40bf7102a073196999ee5f810280a)
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