xref: /aosp_15_r20/external/clang/test/SemaObjC/attr-print.m (revision 67e74705e28f6214e480b399dd47ea732279e315)
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