Signed-off-by: hmz007 <hmz007@gmail.com> Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
14 lines
259 B
C
14 lines
259 B
C
// RUN: %clang_cc1 %s -fsyntax-only -verify
|
|
// expected-no-diagnostics
|
|
// 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, ...);
|
|
|