blob: 608084c150455d70547b7394dd244bc6ddaa4b7d [file] [log] [blame]
/* APPLE LOCAL file mainline */
/* Typedefs of ObjC types should work without any bogus warnings. */
/* { dg-do compile } */
#include <objc/Object.h>
typedef Object MyObject;
int main (int argc, const char * argv[])
{
Object* a = nil;
MyObject* b = a;
Object* c = b;
return 0;
}