blob: fc6ff7b1fe801a9ad0a8668319f088fd889798ab [file] [log] [blame]
Patrick Beardb2f68202012-04-06 18:12:22 +00001// RUN: %clang_cc1 -Wmissing-method-return-type -fsyntax-only -verify -Wno-objc-root-class %s
Fariborz Jahanianaab24a62011-07-21 17:00:47 +00002// rdar://9615045
3
4@interface I
Richard Trieu2fe9b7f2011-12-15 00:38:15 +00005- initWithFoo:(id)foo; // expected-warning {{method has no return type specified; defaults to 'id'}}
Fariborz Jahanianaab24a62011-07-21 17:00:47 +00006@end
7
8@implementation I
Richard Trieu2fe9b7f2011-12-15 00:38:15 +00009- initWithFoo:(id)foo { return 0; } // expected-warning {{method has no return type specified; defaults to 'id'}}
Fariborz Jahanianaab24a62011-07-21 17:00:47 +000010@end
11