f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
81 lines
3.2 KiB
Objective-C
81 lines
3.2 KiB
Objective-C
// RUN: %clang_cc1 -triple x86_64-apple-darwin11 -fobjc-runtime-has-weak -fsyntax-only -fobjc-arc -verify %s
|
|
// rdar://9340606
|
|
|
|
@interface Foo {
|
|
@public
|
|
id __unsafe_unretained x;
|
|
id __weak y;
|
|
id __autoreleasing z; // expected-error {{instance variables cannot have __autoreleasing ownership}}
|
|
}
|
|
@property(strong) id x;
|
|
@property(strong) id y;
|
|
@property(strong) id z;
|
|
@end
|
|
|
|
@interface Bar {
|
|
@public
|
|
id __unsafe_unretained x;
|
|
id __weak y;
|
|
id __autoreleasing z; // expected-error {{instance variables cannot have __autoreleasing ownership}}
|
|
}
|
|
@property(retain) id x;
|
|
@property(retain) id y;
|
|
@property(retain) id z;
|
|
@end
|
|
|
|
@interface Bas {
|
|
@public
|
|
id __unsafe_unretained x;
|
|
id __weak y;
|
|
id __autoreleasing z; // expected-error {{instance variables cannot have __autoreleasing ownership}}
|
|
}
|
|
@property(copy) id x;
|
|
@property(copy) id y;
|
|
@property(copy) id z;
|
|
@end
|
|
|
|
// Errors should start about here :-)
|
|
|
|
@interface Bat
|
|
@property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretained}}
|
|
@property(strong) __weak id y; // expected-error {{strong property 'y' may not also be declared __weak}} expected-error {{property attributes 'strong' and 'weak' are mutually exclusive}}
|
|
@property(strong) __autoreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}}
|
|
@end
|
|
|
|
@interface Bau
|
|
@property(retain) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretained}}
|
|
@property(retain) __weak id y; // expected-error {{strong property 'y' may not also be declared __weak}} expected-error {{property attributes 'retain' and 'weak' are mutually exclusive}}
|
|
@property(retain) __autoreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}}
|
|
@end
|
|
|
|
@interface Bav
|
|
@property(copy) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretained}}
|
|
@property(copy) __weak id y; // expected-error {{strong property 'y' may not also be declared __weak}} expected-error {{property attributes 'copy' and 'weak' are mutually exclusive}}
|
|
@property(copy) __autoreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}}
|
|
@end
|
|
|
|
@interface Bingo
|
|
@property(assign) __unsafe_unretained id x;
|
|
@property(assign) __weak id y; // expected-error {{property attributes 'assign' and 'weak' are mutually exclusive}}
|
|
@property(assign) __autoreleasing id z; // expected-error {{unsafe_unretained property 'z' may not also be declared __autoreleasing}}
|
|
@end
|
|
|
|
@interface Batman
|
|
@property(unsafe_unretained) __unsafe_unretained id x;
|
|
@property(unsafe_unretained) __weak id y; // expected-error {{property attributes 'unsafe_unretained' and 'weak' are mutually exclusive}}
|
|
@property(unsafe_unretained) __autoreleasing id z; // expected-error {{unsafe_unretained property 'z' may not also be declared __autoreleasing}}
|
|
@end
|
|
|
|
// rdar://9396329
|
|
@interface Super
|
|
@property (readonly, retain) id foo;
|
|
@property (readonly, weak) id fee;
|
|
@property (readonly, strong) id frr;
|
|
@end
|
|
|
|
@interface Bugg : Super
|
|
@property (readwrite) id foo;
|
|
@property (readwrite) id fee;
|
|
@property (readwrite) id frr;
|
|
@end
|
|
|