summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/regress/isnan.C
blob: 40d07e5deefd31dbdad08b29b187a2c0cec4d845 (plain)
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);
}