blob: 829ec5dc97e2afcf475c0d6348208f16c3e5f67b [file] [log] [blame]
Fariborz Jahanianebff1fe2009-01-16 20:35:09 +00001// RUN: clang -fsyntax-only -verify %s
2
3typedef struct NotAClass {
4 int a, b;
5} NotAClass;
6
7void foo() {
8 [NotAClass nonexistent_method]; // expected-error {{invalid receiver to message expression}}
9}