bolt/deps/llvm-18.1.8/clang/test/SemaObjC/invalid-receiver.m
2025-02-14 19:21:04 +01:00

9 lines
252 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -verify %s
typedef struct NotAClass {
int a, b;
} NotAClass;
void foo(void) {
[NotAClass nonexistent_method]; // expected-error {{receiver type 'NotAClass' (aka 'struct NotAClass') is not an Objective-C class}}
}