1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 %s -fobjc-arc -ast-print | FileCheck %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc__strong id x; 4*f4a2713aSLionel Sambucid y; 5*f4a2713aSLionel Sambuc__strong id z; 6*f4a2713aSLionel Sambuc 7*f4a2713aSLionel Sambuc// CHECK: __strong id x; 8*f4a2713aSLionel Sambuc// CHECK-NOT: __strong id y; 9*f4a2713aSLionel Sambuc// CHECK: __strong id z; 10