bolt/deps/llvm-18.1.8/clang/test/Parser/method-def-in-class.m
2025-02-14 19:21:04 +01:00

13 lines
254 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -verify %s
@interface A
-(id) f0 { // expected-error {{expected ';' after method prototype}}
assert(0);
}
@end
@interface C
- (id) f0 { // expected-error {{expected ';' after method prototype}}
assert(0);
};
@end