2011-01-05 04:05:20 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -fobjc-nonfragile-abi -fobjc-default-synthesize-properties -verify %s
|
2010-07-17 08:59:30 +08:00
|
|
|
|
|
|
|
int bar;
|
|
|
|
|
|
|
|
@interface I
|
|
|
|
{
|
|
|
|
int _bar;
|
|
|
|
}
|
|
|
|
@property int PROP;
|
|
|
|
@property int PROP1;
|
|
|
|
@property int PROP2;
|
|
|
|
@property int PROP3;
|
|
|
|
@property int PROP4;
|
|
|
|
|
|
|
|
@property int bar;
|
|
|
|
@property int bar1;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation I
|
2011-07-22 09:06:53 +08:00
|
|
|
- (int) Meth { return PROP; } // expected-note 2{{'PROP' declared here}} \
|
|
|
|
// expected-note 5{{method declared here}}
|
2010-07-17 08:59:30 +08:00
|
|
|
|
2011-07-22 09:06:53 +08:00
|
|
|
@dynamic PROP1; // expected-warning {{property implementation declaration after method or function definition}}
|
2010-07-17 08:59:30 +08:00
|
|
|
- (int) Meth1 { return PROP1; } // expected-error {{use of undeclared identifier 'PROP1'}}
|
|
|
|
|
|
|
|
- (int) Meth2 { return PROP2; } // expected-error {{use of undeclared identifier 'PROP2'}}
|
2011-07-22 09:06:53 +08:00
|
|
|
@dynamic PROP2; // expected-warning {{property implementation declaration after method or function definition}}
|
2010-07-17 08:59:30 +08:00
|
|
|
|
|
|
|
- (int) Meth3 { return PROP3; } // expected-error {{use of undeclared identifier 'PROP3'}}
|
2011-07-22 09:06:53 +08:00
|
|
|
@synthesize PROP3=IVAR; // expected-warning {{property implementation declaration after method or function definition}}
|
2010-07-17 08:59:30 +08:00
|
|
|
|
|
|
|
- (int) Meth4 { return PROP4; }
|
2011-07-22 09:06:53 +08:00
|
|
|
@synthesize PROP4=PROP4; // expected-warning {{property implementation declaration after method or function definition}}
|
2010-07-17 08:59:30 +08:00
|
|
|
|
|
|
|
- (int) Meth5 { return bar; } // expected-error {{use of undeclared identifier 'bar'}}
|
2011-07-22 09:06:53 +08:00
|
|
|
@synthesize bar = _bar; // expected-warning {{property implementation declaration after method or function definition}}
|
2010-07-17 08:59:30 +08:00
|
|
|
|
|
|
|
- (int) Meth6 { return bar1; }
|
|
|
|
|
|
|
|
@end
|
2010-07-20 00:14:33 +08:00
|
|
|
|
|
|
|
@implementation I(CAT)
|
|
|
|
- (int) Meth { return PROP1; } // expected-error {{use of undeclared identifier 'PROP1'}}
|
|
|
|
@end
|
|
|
|
|
2010-07-31 00:59:05 +08:00
|
|
|
@implementation I(r8251648)
|
|
|
|
- (int) Meth1: (int) bar {
|
|
|
|
return bar; // expected-warning {{local declaration of 'bar' hides instance variable}}
|
|
|
|
}
|
|
|
|
@end
|