repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
SemaObjC
/
continuation-class-property.m
blob
c48a23d62a9b6a36006d7956114be3e757757fa5
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// radar 7509234
3
4
@protocol Foo
5
@property (readonly, copy) id foos;
6
@end
7
8
@interface Bar <Foo> {
9
}
10
11
@end
12
13
@interface Baz <Foo> {
14
}
15
@end
16
17
@interface Bar ()
18
@property (readwrite, copy) id foos;
19
@end
20
21
@interface Baz ()
22
@property (readwrite, copy) id foos;
23
@end
24