[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Sema / builtin_objc_msgSend.c
blob419e92da44ebcf6ff9279a6279604fd4cf8773be
1 // RUN: %clang_cc1 %s -fsyntax-only -verify
2 // expected-no-diagnostics
3 // rdar://8632525
5 typedef struct objc_class *Class;
6 typedef struct objc_object {
7 Class isa;
8 } *id;
11 typedef struct objc_selector *SEL;
12 extern id objc_msgSend(id self, SEL op, ...);