blob: 67d76b85e7ababc33ae9fdc03694d2e648960b78 [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
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00003// expected-no-diagnostics
Fariborz Jahanian9f37cd12012-01-04 00:31:53 +00004// rdar://10565506
5
6@protocol P @end
7
8@interface I
9@property Class<P> MyClass;
10@property Class MyClass1;
11@property void * VOIDSTAR;
12@end
13
14@implementation I
15@synthesize MyClass, MyClass1, VOIDSTAR;
16@end