bolt/deps/llvm-18.1.8/clang/test/SemaObjC/invalid-receiver.m

10 lines
252 B
Mathematica
Raw Normal View History

2025-02-14 19:21:04 +01:00
// 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}}
}