1 // RUN: %clang_cc1 -triple x86_64-apple-darwin11 -fsyntax-only -verify -Wno-objc-root-class %s
5 @property (nonatomic, retain) id newName __attribute__((ns_returns_not_retained)) ;
7 @property (nonatomic, retain) id newName1 __attribute__((ns_returns_not_retained)) ;
8 - (id) newName1 __attribute__((ns_returns_not_retained));
10 @property (nonatomic, retain) id newName2 __attribute__((ns_returns_not_retained)); // expected-note {{roperty declared here}}
11 - (id) newName2; // expected-warning {{property declared as returning non-retained objects; getter returning retained objects}}
18 - (id) newName1 { return 0; }