You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
471 B
11 lines
471 B
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// rdar://10260017
|
|
|
|
@interface Foo
|
|
@property (nonatomic, assign, atomic) float dummy; // expected-error {{property attributes 'atomic' and 'nonatomic' are mutually exclusive}}
|
|
@property (nonatomic, assign) float d1;
|
|
@property (atomic, assign) float d2;
|
|
@property (assign) float d3;
|
|
@property (atomic, nonatomic, assign) float d4; // expected-error {{property attributes 'atomic' and 'nonatomic' are mutually exclusive}}
|
|
@end
|