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