blob: 163dddee708ffda6972d49a3c3c875942bc97626 [file] [log] [blame]
// RUN: %clang_cc1 -fdebugger-support -funknown-anytype -fsyntax-only -verify %s
// rdar://problem/9416370
namespace test0 {
void test(id x) {
[x foo]; // expected-error {{no known method '-foo'; cast the message send to the method's return type}}
}
}