summaryrefslogtreecommitdiff
path: root/test/Sema/builtin_objc_msgSend.c
blob: 419e92da44ebcf6ff9279a6279604fd4cf8773be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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, ...);