]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/SemaObjC/attr-print.m
Vendor import of clang release_34 branch r197841 (effectively, 3.4 RC3):
[FreeBSD/FreeBSD.git] / test / SemaObjC / attr-print.m
1 // RUN: %clang_cc1 %s -fobjc-arc -ast-print | FileCheck %s
2
3 __strong id x;
4 id y;
5 __strong id z;
6
7 // CHECK: __strong id x;
8 // CHECK-NOT: __strong id y;
9 // CHECK: __strong id z;