You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
377 B
17 lines
377 B
// 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
|
|
// rdar://10565506
|
|
|
|
@protocol P @end
|
|
|
|
@interface I
|
|
@property Class<P> MyClass;
|
|
@property Class MyClass1;
|
|
@property void * VOIDSTAR;
|
|
@end
|
|
|
|
@implementation I
|
|
@synthesize MyClass, MyClass1, VOIDSTAR;
|
|
@end
|