]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Sema/builtin_objc_msgSend.c
Vendor import of clang release_40 branch r292732:
[FreeBSD/FreeBSD.git] / test / Sema / builtin_objc_msgSend.c
1 // RUN: %clang_cc1 %s -fsyntax-only -verify
2 // expected-no-diagnostics
3 // rdar://8632525
4
5 typedef struct objc_class *Class;
6 typedef struct objc_object {
7     Class isa;
8 } *id;
9
10
11 typedef struct objc_selector *SEL;
12 extern id objc_msgSend(id self, SEL op, ...);
13