blob: 082fb2868c639ed179019c1fc231e3e297371479 [file] [log] [blame]
Fariborz Jahaniane7d62022010-11-19 18:16:46 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify
Andy Gibbsc6e68da2012-10-19 12:44:48 +00002// expected-no-diagnostics
Fariborz Jahaniane7d62022010-11-19 18:16:46 +00003// rdar://8686888
4
5typedef struct objc_selector *SEL;
6typedef struct objc_object *id;
7
8extern "C" __attribute__((visibility("default"))) id objc_msgSend(id self, SEL op, ...)
9 __attribute__((visibility("default")));
10
11inline void TCFReleaseGC(void * object)
12{
13 static SEL SEL_release;
14 objc_msgSend((id)object, SEL_release);
15}