diff options
Diffstat (limited to 'test/SemaObjC/no-gc-weak-test.m')
| -rw-r--r-- | test/SemaObjC/no-gc-weak-test.m | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/test/SemaObjC/no-gc-weak-test.m b/test/SemaObjC/no-gc-weak-test.m index 6539a9b7f149..3b4c78ec803b 100644 --- a/test/SemaObjC/no-gc-weak-test.m +++ b/test/SemaObjC/no-gc-weak-test.m @@ -1,11 +1,10 @@ // RUN: %clang_cc1 -triple i386-apple-darwin9 -fsyntax-only -verify -Wno-objc-root-class %s -// expected-no-diagnostics @interface Subtask { id _delegate; } -@property(nonatomic,readwrite,assign) id __weak delegate; +@property(nonatomic,readwrite,assign) id __weak delegate; // expected-error {{unsafe_unretained property 'delegate' may not also be declared __weak}} @end @implementation Subtask @@ -15,15 +14,15 @@ @interface PVSelectionOverlayView2 { - id __weak _selectionRect; + id __weak _selectionRect; // expected-error {{cannot create __weak reference because the current deployment target does not support weak references}} expected-error {{existing instance variable '_selectionRect' for property 'selectionRect' with assign attribute must be __unsafe_unretained}} } -@property(assign) id selectionRect; +@property(assign) id selectionRect; // expected-note {{property declared here}} @end @implementation PVSelectionOverlayView2 -@synthesize selectionRect = _selectionRect; +@synthesize selectionRect = _selectionRect; // expected-note {{property synthesized here}} @end |
