aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/objc-property-3.m
blob: 565a006fe444dd20083e345dbcc31e5b424fde5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: clang -verify %s

@interface I 
{
	id d1;
}
@property (readwrite, copy) id d1;
@property (readwrite, copy) id d2;
@end

@interface NOW : I
@property (readonly, retain) id d1; // expected-warning {{attribute 'readonly' of property 'd1' restricts attribute 'readwrite' of 'I' property in super class}} expected-warning {{property 'd1' 'copy' attribute does not match super class 'I' property}}
@property (readwrite, copy) I* d2; // expected-warning {{property type 'I *' does not match super class 'I' property type}}
@end