blob: c009f4b7cf98d1a21816078f2936dc9a4a271150 [file] [log] [blame]
// 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
// expected-no-diagnostics
@protocol P @end
@interface I
@property Class<P> MyClass;
@property Class MyClass1;
@property void * VOIDSTAR;
@end
@implementation I
@synthesize MyClass, MyClass1, VOIDSTAR;
@end