blob: 419e92da44ebcf6ff9279a6279604fd4cf8773be [file] [log] [blame]
Fariborz Jahanianba8bda02010-11-09 21:38:20 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Fariborz Jahanianba8bda02010-11-09 21:38:20 +00003// rdar://8632525
4
5typedef struct objc_class *Class;
6typedef struct objc_object {
7 Class isa;
8} *id;
9
10
11typedef struct objc_selector *SEL;
12extern id objc_msgSend(id self, SEL op, ...);
13