[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / SemaObjC / continuation-class-property.m
blobc48a23d62a9b6a36006d7956114be3e757757fa5
1 // RUN: %clang_cc1  -fsyntax-only -verify %s
2 // radar 7509234
4 @protocol Foo
5 @property (readonly, copy) id foos;
6 @end
8 @interface Bar <Foo> {
11 @end
13 @interface Baz  <Foo> {
15 @end
17 @interface Bar ()
18 @property (readwrite, copy) id foos;
19 @end
21 @interface Baz ()
22 @property (readwrite, copy) id foos;
23 @end