brintos

brintos / llvm-project-archived public Read only

0
0
Text · 254 B · a847a43 Raw
14 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3@interface A4-(id) f0 { // expected-error {{expected ';' after method prototype}}5  assert(0);6}7@end8 9@interface C10- (id) f0 { // expected-error {{expected ';' after method prototype}}11    assert(0);12};13@end14