blob: 366f7140085689185da76ef080385f9d623b6ef4 [file] [log] [blame]
Fariborz Jahanian1147c5e2009-12-14 17:36:25 +00001// RUN: clang -cc1 -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}