OSDN Git Service

2012-01-30 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / Wmissing-parameter-type-no.c
1 /* Test that we can disable -Wmissing-parameter-type */
2 /* { dg-do compile } */
3 /* { dg-options "-Wall -Wextra -Wno-missing-parameter-type" } */
4
5 int foo(bar) { return bar;} /* { dg-bogus "type of 'bar' defaults to 'int'" } */
6
7