1 /* PR middle-end/27488 */
2 /* { dg-do compile } */
3 
4 extern double fabs(double x);
5 extern double sinh(double x);
6 
foo()7 void foo()
8 {
9   fabs(sinh(0..));  /* { dg-error "decimal points" } */
10 }
11