blob: 16f0155173d06ab83ea9f7d3be5a666f32fe9a4d [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +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}