1 // RUN: %clang_cc1 -triple i386-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 %s -fsyntax-only
9 @interface TestObject : Test {
15 @implementation TestObject
21 extern void *malloc(__typeof__(sizeof(0)));
22 extern int printf(const char *, ...);
26 TestObject * a = (id)malloc(100);
28 printf("12: %d\n", ((struct wibble*)a)->foo);
29 printf("%d: %d\n", ((char*)&(((struct wibble*)a)->foo)) - (char*)a, ((char*)&(a->foo)) - (char*)a);