blob: 1174dd2e1706da32651d5e010a481d9d8412fd39 [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() {
Douglas Gregor2725ca82010-04-21 19:57:20 +00008 [NotAClass nonexistent_method]; // expected-error {{receiver type 'NotAClass' (aka 'struct NotAClass') is not an Objective-C class}}
Fariborz Jahanianebff1fe2009-01-16 20:35:09 +00009}