blob: 1174dd2e1706da32651d5e010a481d9d8412fd39 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Fariborz Jahanian10401ce2009-01-16 20:35:09 +00002
3typedef struct NotAClass {
4 int a, b;
5} NotAClass;
6
7void foo() {
Douglas Gregor0c78ad92010-04-21 19:57:20 +00008 [NotAClass nonexistent_method]; // expected-error {{receiver type 'NotAClass' (aka 'struct NotAClass') is not an Objective-C class}}
Fariborz Jahanian10401ce2009-01-16 20:35:09 +00009}