OSDN Git Service

2012-04-13 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr36774-2.c
1 /* Nested functions shouldn't produce warnings if defined before first use.
2    Bug 36774. Test with -Wmissing-declarations. */
3 /* { dg-do compile } */
4 /* { dg-options "-Wmissing-declarations" } */
5
6 int foo(int a) { /* { dg-warning "no previous declaration" } */
7     int bar(int b) { return b; } /* { dg-bogus "no previous declaration" } */
8     return bar(a);
9 }