aboutsummaryrefslogtreecommitdiff
path: root/clang/test/SemaObjC/warn-implicit-atomic-property.m
blob: a5d587cf2a2b5824007b6534db031eec76df3593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 -fsyntax-only -Wimplicit-atomic-properties -verify -Wno-objc-root-class %s

@interface Super
@property (nonatomic, readwrite) int P; // OK
@property (atomic, readwrite) int P1; // OK
@property (readwrite) int P2; // expected-note {{property declared here}}
@property int P3; // expected-note {{property declared here}}
@end

@implementation Super // expected-warning {{property is assumed atomic when auto-synthesizing the property}}
@synthesize P,P1,P2; // expected-warning {{property is assumed atomic by default}}
@end