builtin_objc_msgSend.c 259 B

12345678910111213
  1. // RUN: %clang_cc1 %s -fsyntax-only -verify
  2. // expected-no-diagnostics
  3. // rdar://8632525
  4. typedef struct objc_class *Class;
  5. typedef struct objc_object {
  6. Class isa;
  7. } *id;
  8. typedef struct objc_selector *SEL;
  9. extern id objc_msgSend(id self, SEL op, ...);