brintos

brintos / llvm-project-archived public Read only

0
0
Text · 258 B · cdb855e Raw
19 lines · plain
1// RUN: %clang_cc1  -fsyntax-only -verify -Wno-objc-root-class %s2// expected-no-diagnostics3 4@protocol CYCdef5- (int)name;6@end7 8@interface JSCdef <CYCdef> {9    int name;10}11 12@property (assign) int name;13@end14 15@implementation JSCdef16@synthesize name;17@end18 19