10 lines · plain
1// RUN: %clang_cc1 -Wmethod-signatures -fsyntax-only -verify -Wno-objc-root-class %s2 3@interface Test4- (int)foo;5@end6 7@implementation Test8- (int)foo { return; } // expected-error {{non-void method 'foo' should return a value}}9@end10