1 /* Test that we can disable -Wmissing-parameter-type */
2 /* { dg-do compile } */
3 /* { dg-options "-Wall -Wextra -Wno-missing-parameter-type" } */
4 
foo(bar)5 int foo(bar) { return bar;} /* { dg-bogus "type of 'bar' defaults to 'int'" } */
6 
7 
8