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