blob: df2f835932f121f1cc3f5c8e00fb84e2b0bfaffd [file] [log] [blame]
Fariborz Jahanian9f37cd12012-01-04 00:31:53 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2// RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify %s
3// 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