]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/pr90648.c
Update copyright years.
[thirdparty/gcc.git] / 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 }