xref: /aosp_15_r20/external/clang/test/SemaObjC/duplicate-property.m (revision 67e74705e28f6214e480b399dd47ea732279e315)
1// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3@interface Foo {
4  id x;
5}
6@property (nonatomic, retain) id x; // expected-note{{property declared here}}
7@property (nonatomic, retain) id x; // expected-error{{property has a previous declaration}}
8@end
9