(root)/
gcc-13.2.0/
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 -std=gnu89" } */
       4  
       5  int foo(bar) { return bar;} /* { dg-bogus "type of 'bar' defaults to 'int'" } */
       6  
       7