1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s 2*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify -Wno-objc-root-class %s 3*f4a2713aSLionel Sambuc// expected-no-diagnostics 4*f4a2713aSLionel Sambuc// rdar://10565506 5*f4a2713aSLionel Sambuc 6*f4a2713aSLionel Sambuc@protocol P @end 7*f4a2713aSLionel Sambuc 8*f4a2713aSLionel Sambuc@interface I 9*f4a2713aSLionel Sambuc@property Class<P> MyClass; 10*f4a2713aSLionel Sambuc@property Class MyClass1; 11*f4a2713aSLionel Sambuc@property void * VOIDSTAR; 12*f4a2713aSLionel Sambuc@end 13*f4a2713aSLionel Sambuc 14*f4a2713aSLionel Sambuc@implementation I 15*f4a2713aSLionel Sambuc@synthesize MyClass, MyClass1, VOIDSTAR; 16*f4a2713aSLionel Sambuc@end 17