2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -Wreadonly-setter-attrs -verify %s
|
2008-12-06 09:12:43 +08:00
|
|
|
|
|
|
|
@protocol P0
|
2008-12-09 03:28:10 +08:00
|
|
|
@property(readonly,assign) id X; // expected-warning {{property attributes 'readonly' and 'assign' are mutually exclusive}}
|
2008-12-06 09:12:43 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
@protocol P1
|
2008-12-09 03:28:10 +08:00
|
|
|
@property(readonly,retain) id X; // expected-warning {{property attributes 'readonly' and 'retain' are mutually exclusive}}
|
2008-12-06 09:12:43 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
@protocol P2
|
2008-12-09 03:28:10 +08:00
|
|
|
@property(readonly,copy) id X; // expected-warning {{property attributes 'readonly' and 'copy' are mutually exclusive}}
|
2008-12-06 09:12:43 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
@protocol P3
|
|
|
|
@property(readonly,readwrite) id X; // expected-error {{property attributes 'readonly' and 'readwrite' are mutually exclusive}}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@protocol P4
|
|
|
|
@property(assign,copy) id X; // expected-error {{property attributes 'assign' and 'copy' are mutually exclusive}}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@protocol P5
|
|
|
|
@property(assign,retain) id X; // expected-error {{property attributes 'assign' and 'retain' are mutually exclusive}}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@protocol P6
|
|
|
|
@property(copy,retain) id X; // expected-error {{property attributes 'copy' and 'retain' are mutually exclusive}}
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
|