[clang-tidy][modernize-use-starts-ends-with] Fix operator rewriting false negative...
[llvm-project.git] / clang / test / Sema / builtin_objc_msgSend.c
blobd5a80f55eb82e691fb7a0e429d26b81b4d0191b7
1 // RUN: %clang_cc1 %s -fsyntax-only -verify
2 // expected-no-diagnostics
4 typedef struct objc_class *Class;
5 typedef struct objc_object {
6 Class isa;
7 } *id;
10 typedef struct objc_selector *SEL;
11 extern id objc_msgSend(id self, SEL op, ...);