(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.dg/
cast1.d
// { dg-do compile }
float bug8060(float x)
{
    int i = *cast(int*)&x;
    ++i;
    return *cast(float*)&i;
}