1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
13 lines
232 B
C
13 lines
232 B
C
// RUN: %clang_cc1 %s -fsyntax-only -verify
|
|
// rdar://8632525
|
|
|
|
typedef struct objc_class *Class;
|
|
typedef struct objc_object {
|
|
Class isa;
|
|
} *id;
|
|
|
|
|
|
typedef struct objc_selector *SEL;
|
|
extern id objc_msgSend(id self, SEL op, ...);
|
|
|