1 // PR c++/48369
2 
3 extern "C" int isnan (double);
4 
f(double d)5 void f(double d)
6 {
7     bool b = isnan(d);
8 }
9