diff options
Diffstat (limited to 'test/SemaObjC/ClassPropertyNotObject.m')
-rw-r--r-- | test/SemaObjC/ClassPropertyNotObject.m | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/SemaObjC/ClassPropertyNotObject.m b/test/SemaObjC/ClassPropertyNotObject.m new file mode 100644 index 0000000000000..02ed40ae338b9 --- /dev/null +++ b/test/SemaObjC/ClassPropertyNotObject.m @@ -0,0 +1,15 @@ +// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s +// RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify -Wno-objc-root-class %s +// rdar://10565506 + +@protocol P @end + +@interface I +@property Class<P> MyClass; +@property Class MyClass1; +@property void * VOIDSTAR; +@end + +@implementation I +@synthesize MyClass, MyClass1, VOIDSTAR; +@end |