Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / objc.dg / typedef-alias-1.m
blob263ce010af050ed2429747d01118987dc6469b64
1 /* Typedefs of ObjC types should work without any bogus warnings. */
2 /* { dg-do compile } */
4 #include "../objc-obj-c++-shared/TestsuiteObject.h"
5 #include <objc/objc.h>
7 typedef TestsuiteObject MyObject;
9 int main (int argc, const char * argv[])
11     TestsuiteObject* a = nil;
12     MyObject* b = a;
13     TestsuiteObject* c = b;
15     return 0;