hanchenye-llvm-project/clang/test/SemaObjC/property-ns-returns-not-ret...

22 lines
740 B
Mathematica
Raw Normal View History

// RUN: %clang_cc1 -triple x86_64-apple-darwin11 -fobjc-nonfragile-abi -fsyntax-only -verify %s
// rdar://9636091
@interface I
@property (nonatomic, retain) id newName __attribute__((ns_returns_not_retained)) ;
@property (nonatomic, retain) id newName1 __attribute__((ns_returns_not_retained)) ;
- (id) newName1 __attribute__((ns_returns_not_retained));
@property (nonatomic, retain) id newName2 __attribute__((ns_returns_not_retained)); // expected-note {{roperty declared here}}
- (id) newName2; // expected-warning {{property declared as returning non-retained objects; getter returning retained objects}}
@end
@implementation I
@synthesize newName;
@synthesize newName1;
@synthesize newName2;
- (id) newName1 { return 0; }
@end