blob: 357a5bc26eb5a15e886197c3a8398fb69bc20ceb [file] [log] [blame]
Fariborz Jahanianba8bda02010-11-09 21:38:20 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify
2// rdar://8632525
3
4typedef struct objc_class *Class;
5typedef struct objc_object {
6 Class isa;
7} *id;
8
9
10typedef struct objc_selector *SEL;
11extern id objc_msgSend(id self, SEL op, ...);
12