aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/other/isnan.C
blob: f80523dc80f4feda5e8180effd51d876d944ba0c (plain)
1
2
3
4
5
6
7
8
// PR c++/48369

extern "C" int isnan (double);

void f(double d)
{
    bool b = isnan(d);
}