1 // RUN: %clang_cc1 -fsyntax-only -fblocks -fobjc-arc -verify -Wno-objc-root-class -Wno-strict-prototypes %s
12 // Volatile fields are fine.
40 id __attribute__((objc_ownership(none))) i;
47 __autoreleasing id X; // expected-error {{global variables cannot have __autoreleasing ownership}}
48 __autoreleasing NSError *E; // expected-error {{global variables cannot have __autoreleasing ownership}}
51 extern id __autoreleasing X1; // expected-error {{global variables cannot have __autoreleasing ownership}}
56 static id __autoreleasing X1; // expected-error {{global variables cannot have __autoreleasing ownership}}
57 extern id __autoreleasing E; // expected-error {{global variables cannot have __autoreleasing ownership}}
62 @property (retain) id newFoo; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expected-note{{explicitly declare getter '-newFoo' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
63 @property (strong) id copyBar; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expected-note{{explicitly declare getter '-copyBar' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
64 @property (copy) id allocBaz; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expected-note{{explicitly declare getter '-allocBaz' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
65 @property (copy, nonatomic) id new;
66 @property (retain) id newDFoo; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expected-note{{explicitly declare getter '-newDFoo' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
67 @property (strong) id copyDBar; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expected-note{{explicitly declare getter '-copyDBar' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
68 @property (copy) id allocDBaz; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expected-note{{explicitly declare getter '-allocDBaz' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
84 @interface MethodFamilyDiags
85 @property (retain) id newFoo; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}}
86 - (id)newFoo; // expected-note {{explicitly declare getter '-newFoo' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
88 #define OBJC_METHOD_FAMILY_NONE __attribute__((objc_method_family(none)))
89 - (id)newBar; // expected-note {{explicitly declare getter '-newBar' with 'OBJC_METHOD_FAMILY_NONE' to return an 'unowned' object}}
90 @property (retain) id newBar; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}}
92 @property (retain) id newBaz; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expected-note {{explicitly declare getter '-newBaz' with 'OBJC_METHOD_FAMILY_NONE' to return an 'unowned' object}}
93 #undef OBJC_METHOD_FAMILY_NONE
95 @property (retain, readonly) id newGarply; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expected-note {{explicitly declare getter '-newGarply' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}}
98 @interface MethodFamilyDiags (Redeclarations)
99 - (id)newGarply; // no note here
102 @implementation MethodFamilyDiags
103 @synthesize newGarply;
108 - (void)bar:(id)b; // expected-note {{parameter declared here}}
109 - (void)bar1:(id) __attribute((ns_consumed)) b;
110 - (void)ok:(id) __attribute((ns_consumed)) b;
111 - (id)ns_non; // expected-note {{method declared here}}
112 - (id)not_ret:(id) b __attribute((ns_returns_not_retained)); // expected-note {{method declared here}}
113 - (id)both__returns_not_retained:(id) b __attribute((ns_returns_not_retained));
116 @interface Sub : Super
117 - (void)bar:(id) __attribute((ns_consumed)) b; // expected-error {{overriding method has mismatched ns_consumed attribute on its parameter}}
119 - (void)ok:(id) __attribute((ns_consumed)) b;
120 - (id)ns_non __attribute((ns_returns_not_retained)); // expected-error {{overriding method has mismatched ns_returns_not_retained attributes}}
121 - (id)not_ret:(id) b __attribute((ns_returns_retained)); // expected-error {{overriding method has mismatched ns_returns_retained attributes}}
122 - (id)both__returns_not_retained:(id) b __attribute((ns_returns_not_retained));
123 @property (copy, nonatomic) __attribute__((ns_returns_retained)) id (^fblock)(void);
126 // Test that we give a good diagnostic here that mentions the missing
127 // ownership qualifier. We don't want this to get suppressed because
128 // of an invalid conversion.
131 id *px = &x; // expected-error {{pointer to non-const type 'id' with no explicit ownership}}
134 J **py = &y; // expected-error {{pointer to non-const type 'J *' with no explicit ownership}} expected-warning {{incompatible pointer types initializing}}
137 void func(void) __attribute__((objc_ownership(none))); // expected-warning {{'objc_ownership' only applies to Objective-C object or block pointer types; type here is 'void (void)'}}
138 struct __attribute__((objc_ownership(none))) S2 {}; // expected-error {{'objc_ownership' attribute only applies to variables}}
140 @property __attribute__((objc_ownership(frob))) id i; // expected-warning {{'objc_ownership' attribute argument not supported: 'frob'}}
143 @interface NSObject @end
145 @interface ControllerClass : NSObject @end
147 @interface SomeClassOwnedByController
148 @property (readonly) ControllerClass *controller; // expected-note {{property declared here}}
150 @property (readonly, weak) ControllerClass *weak_controller;
153 @interface SomeClassOwnedByController ()
154 @property (readwrite, weak) ControllerClass *controller; // expected-warning {{primary property declaration is implicitly strong while redeclaration in class extension is weak}}
156 @property (readwrite, weak) ControllerClass *weak_controller;
170 // FIXME: clang should diagnose mismatch between methods in D3(Cat1) and
172 - (id)method __attribute__((ns_returns_retained));