(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.dg/
torture/
imports/
pr106563math.d
module imports.pr106563math;

T nextPow2(T)(const T val)
{
    return powIntegralImpl(val);
}

pragma(inline, true)
T powIntegralImpl(T)(T)
{
    return 1;
}