|
@@ -11,8 +11,12 @@ BT foo() __attribute__((ns_returns_retained));
|
|
|
|
|
|
@interface I
|
|
|
BT foo() __attribute__((ns_returns_retained));
|
|
|
+- (BT) Meth __attribute__((ns_returns_retained));
|
|
|
++ (BT) ClsMeth __attribute__((ns_returns_retained));
|
|
|
@end
|
|
|
|
|
|
@implementation I
|
|
|
BT foo() __attribute__((ns_returns_retained)) {return ^{}; }
|
|
|
+- (BT) Meth {return ^{}; }
|
|
|
++ (BT) ClsMeth {return ^{}; }
|
|
|
@end
|