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