brintos

brintos / llvm-project-archived public Read only

0
0
Text · 358 B · c009f4b Raw
16 lines · plain
1// RUN: %clang_cc1  -fsyntax-only -verify -Wno-objc-root-class %s2// RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify -Wno-objc-root-class %s3// expected-no-diagnostics4 5@protocol P @end6 7@interface I8@property Class<P> MyClass;9@property Class MyClass1;10@property void * VOIDSTAR;11@end12 13@implementation I14@synthesize MyClass, MyClass1, VOIDSTAR;15@end16