blob: 02ed40ae338b9c8ed08b3359f39b11d07b182818 [file] [log] [blame]
Patrick Beardb2f68202012-04-06 18:12:22 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2// RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify -Wno-objc-root-class %s
Fariborz Jahanian9f37cd12012-01-04 00:31:53 +00003// rdar://10565506
4
5@protocol P @end
6
7@interface I
8@property Class<P> MyClass;
9@property Class MyClass1;
10@property void * VOIDSTAR;
11@end
12
13@implementation I
14@synthesize MyClass, MyClass1, VOIDSTAR;
15@end