blob: 4ab89b7e1e2cafd5f52f0ffea83f181ab53828d4 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -verify %s
Fariborz Jahanian268bc8c2009-03-03 22:19:15 +00002
3@interface Object
4- (void)foo;
5@end
6
7@interface Class1
8- (void)setWindow:(Object *)wdw;
9@end
10
11void foo(void) {
12 Object *obj;
13 [obj setWindow:0]; // expected-warning{{Object may not respond to 'setWindow:'}}
14}