hanchenye-llvm-project/clang/test/SemaObjC/provisional-ivar-lookup.m

44 lines
1.1 KiB
Objective-C

// RUN: %clang_cc1 -fsyntax-only -fobjc-default-synthesize-properties -fobjc-nonfragile-abi -verify %s
// rdar:// 8565343
@interface Foo {
@private
int _foo;
int _foo2;
}
@property (readwrite, nonatomic) int foo, foo1, foo2, foo3;
@property (readwrite, nonatomic) int PROP;
@end
@implementation Foo
@synthesize foo = _foo;
@synthesize foo1;
- (void)setFoo:(int)value { // expected-note 3 {{method declared here}}
_foo = foo; // expected-error {{use of undeclared identifier 'foo'}}
}
- (void)setFoo1:(int)value {
_foo = foo1; // OK
}
- (void)setFoo2:(int)value {
_foo = foo2; // expected-error {{use of undeclared identifier 'foo2'}}
}
- (void)setFoo3:(int)value {
_foo = foo3; // OK
}
@synthesize foo2 = _foo2; // expected-warning {{property implementation declaration after method or function definition}}
@synthesize foo3; // expected-warning {{property implementation declaration after method or function definition}}
@synthesize PROP=PROP; // expected-warning {{property implementation declaration after method or function definition}}
- (void)setPROP:(int)value {
PROP = PROP; // OK
}
@end