blob: a579184060b79496c44dfabd9a3ee3463a6d381d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
// radar 7509234
@protocol Foo
@property (readonly, copy) id foos;
@end
@interface Bar <Foo> {
}
@end
@interface Baz <Foo> {
}
@end
@interface Bar ()
@property (readwrite, copy) id foos;
@end
@interface Baz ()
@property (readwrite, copy) id foos;
@end
// rdar://10142679
@class NSString;
typedef struct {
float width;
float length;
} NSRect;
@interface MyClass {
}
@property (readonly) NSRect foo; // expected-note {{property declared here}}
@property (readonly, strong) NSString *bar; // expected-note {{property declared here}}
@end
@interface MyClass ()
@property (readwrite) NSString *foo; // expected-warning {{type of property 'NSString *' in continuation class does not match property type in primary class}}
@property (readwrite, strong) NSRect bar; // expected-warning {{type of property 'NSRect' in continuation class does not match property type in primary class}}
@end
|