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