1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -fobjc-arc -fobjc-runtime-has-weak -x objective-c %s.result
2 // RUN: arcmt-test --args -triple x86_64-apple-macosx10.7 -fsyntax-only %s > %t
3 // RUN: diff %t %s.result
7 __attribute__((objc_arc_weak_reference_unavailable))
11 @class _NSCachedAttributedString;
12 typedef _NSCachedAttributedString *BadClassForWeak;
16 @interface Foo : NSObject {
25 @property (readonly) Foo *x;
26 @property (assign) Foo *w;
27 @property Foo *q1, *q2;
28 @property (assign) WeakOptOut *oo;
29 @property (assign) BadClassForWeak bcw;
30 @property (assign) id not_safe1;
31 @property () NSObject *not_safe2;
32 @property Forw *not_safe3;
33 @property (readonly) Foo *assign_plus1;
34 @property (readonly) Foo *assign_plus2;
35 @property (readonly) Foo *assign_plus3;
37 @property (assign) Foo *no_user_ivar1;
38 @property (readonly) Foo *no_user_ivar2;
40 @property (retain) id def1;
41 @property (atomic,retain) id def2;
42 @property (retain,atomic) id def3;
47 @synthesize x,w,q1,q2,oo,bcw,not_safe1,not_safe2,not_safe3;
48 @synthesize no_user_ivar1, no_user_ivar2;
49 @synthesize assign_plus1, assign_plus2, assign_plus3;
50 @synthesize def1, def2, def3;
52 -(void)test:(Foo *)parm {
53 assign_plus1 = [[Foo alloc] init];
54 assign_plus2 = [Foo new];
55 assign_plus3 = [parm retain];
60 @property (retain,readonly) TestExt *x1;
61 @property (readonly) TestExt *x2;
65 @property (retain,readwrite) TestExt *x1;
66 @property (readwrite) TestExt *x2;
67 @property (retain) TestExt *x3;
70 @implementation TestExt
71 @synthesize x1, x2, x3;