Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / objc.dg / comp-types-11.m
blobb041759ca65a3b16f55025db9b77acdd49d196a0
1 /* { dg-do compile } */
2 #include <objc/Object.h>
4 @interface Derived: Object
5 @end
7 extern Object* foo(void);
8 static Derived *test(void)
10    Derived *m = foo();   /* { dg-warning "initialization from distinct Objective\\-C type" } */
12    return m;