freebsd-dev/test/SemaObjC/error-property-gc-attr.m

29 lines
954 B
Mathematica
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-gc -fsyntax-only -verify %s
2010-05-27 15:17:06 +00:00
// RUN: %clang_cc1 -x objective-c++ -triple i386-apple-darwin9 -fobjc-gc -fsyntax-only -verify %s
2009-06-02 17:58:47 +00:00
@interface INTF
{
id IVAR;
__weak id II;
__weak id WID;
id ID;
__weak INTF* AWEAK;
__weak INTF* WI;
}
@property (assign) __weak id pweak;
@property (assign) __weak id WID;
2010-05-27 15:17:06 +00:00
@property (assign) __strong id NOT;
2009-06-02 17:58:47 +00:00
@property (assign) id ID;
@property (assign) INTF* AWEAK;
@property (assign) __weak INTF* WI;
@end
@implementation INTF
@synthesize pweak=IVAR; // expected-error {{existing ivar 'IVAR' for __weak property 'pweak' must be __weak}}
@synthesize NOT=II; // expected-error {{property 'NOT' must be declared __weak to match existing ivar 'II' with __weak attribute}}
2009-06-02 17:58:47 +00:00
@synthesize WID;
@synthesize ID;
@synthesize AWEAK; // expected-error {{property 'AWEAK' must be declared __weak to match existing ivar 'AWEAK' with __weak attribute}}
2009-06-02 17:58:47 +00:00
@synthesize WI;
@end