summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/conflict-atomic-property.m
blob: 033980c38c73040effc842d0b8f51d1914df3a85 (plain)
1
2
3
4
5
6
7
8
9
10
// 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