aboutsummaryrefslogtreecommitdiff
path: root/test/SemaObjC/continuation-class-property.m
blob: c48a23d62a9b6a36006d7956114be3e757757fa5 (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
// 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