[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaCXX / builtin_objc_msgSend.cpp
blob082fb2868c639ed179019c1fc231e3e297371479
1 // RUN: %clang_cc1 %s -fsyntax-only -verify
2 // expected-no-diagnostics
3 // rdar://8686888
5 typedef struct objc_selector *SEL;
6 typedef struct objc_object *id;
8 extern "C" __attribute__((visibility("default"))) id objc_msgSend(id self, SEL op, ...)
9 __attribute__((visibility("default")));
11 inline void TCFReleaseGC(void * object)
13 static SEL SEL_release;
14 objc_msgSend((id)object, SEL_release);