diff options
Diffstat (limited to 'test/SemaObjC/continuation-class-property.m')
-rw-r--r-- | test/SemaObjC/continuation-class-property.m | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/SemaObjC/continuation-class-property.m b/test/SemaObjC/continuation-class-property.m new file mode 100644 index 0000000000000..c48a23d62a9b6 --- /dev/null +++ b/test/SemaObjC/continuation-class-property.m @@ -0,0 +1,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 + |