OSDN Git Service

2012-04-03 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / noncompile / incomplete-2.c
1 /* Origin: <steven@gcc.gnu.org>
2    Make sure we do not ICE when the type in the function
3    argument list is incomplete (Bug 10602).  */
4 /* { dg-options "-w" } */
5
6 int g95_type_for_mode (enum machine_mode);
7
8 int
9 g95_type_for_mode (enum machine_mode mode) /* { dg-error "incomplete type" } */
10 {
11   return 0;
12 }