android_mt6572_jiabo/external/clang/test/SemaObjC/duplicate-property.m
2025-09-05 16:56:03 +08:00

8 lines
249 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -verify %s
@interface Foo {
id x;
}
@property (nonatomic, retain) id x; // expected-note{{property declared here}}
@property (nonatomic, retain) id x; // expected-error{{property has a previous declaration}}
@end