blob: 9087e4ce7df6668d336940a8e3f089fff507b8c5 [file] [log] [blame]
Steve Naroff94a82c92008-05-31 02:19:15 +00001// RUN: clang %s -verify -fsyntax-only
2
3int main() {
4 const id foo;
5 [foo bar]; // expected-warning {{method '-bar' not found (return type defaults to 'id')}}
6 return 0;
7}
8