OSDN Git Service

2012-01-03 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / redecl-17.c
1 /* { dg-do compile } */
2
3 void (*fp)(const int i);
4 void (*fp)(int i);
5
6 void foo()
7 {
8   (*fp)(0);
9 }
10