OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / objc.dg / comp-types-11.m
1 /* { dg-do compile } */
2 #include "../objc-obj-c++-shared/Object1.h"
3
4 @interface Derived: Object
5 @end
6
7 extern Object* foo(void);
8 static Derived *test(void)
9 {
10    Derived *m = foo();   /* { dg-warning "initialization from distinct Objective\\-C type" } */
11
12    return m;
13 }
14