xref: /aosp_15_r20/external/clang/test/SemaObjC/invalid-receiver.m (revision 67e74705e28f6214e480b399dd47ea732279e315)
1// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3typedef struct NotAClass {
4  int a, b;
5} NotAClass;
6
7void foo() {
8  [NotAClass nonexistent_method]; // expected-error {{receiver type 'NotAClass' (aka 'struct NotAClass') is not an Objective-C class}}
9}
10