brintos

brintos / llvm-project-archived public Read only

0
0
Text · 197 B · 17e34d4 Raw
18 lines · plain
1// RUN: %clang_cc1 %s -fsyntax-only -verify2// expected-no-diagnostics3@interface A4{5  int ivar;6}7@end8 9@interface B : A10- (int)ivar;11@end12 13@implementation B14- (int)ivar {15  return ivar;16} 17@end18