brintos

brintos / llvm-project-archived public Read only

0
0
Text · 176 B · e3405d2 Raw
10 lines · plain
1// RUN: %clang_cc1 %s -fobjc-arc -ast-print | FileCheck %s2 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