(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr90648.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O" } */
       3  
       4  extern double copysign ();
       5  double foo (double x)
       6  {
       7    return x * copysign (); /* { dg-warning "too few arguments" } */
       8  }