1*67e74705SXin Li// RUN: %clang_cc1 -fsyntax-only -verify %s 2*67e74705SXin Li 3*67e74705SXin Li@interface Foo { 4*67e74705SXin Li id x; 5*67e74705SXin Li} 6*67e74705SXin Li@property (nonatomic, retain) id x; // expected-note{{property declared here}} 7*67e74705SXin Li@property (nonatomic, retain) id x; // expected-error{{property has a previous declaration}} 8*67e74705SXin Li@end 9