gcc/gcc/testsuite/gdc.dg/torture/imports/pr106563math.d

13 lines
158 B
D

module imports.pr106563math;
T nextPow2(T)(const T val)
{
return powIntegralImpl(val);
}
pragma(inline, true)
T powIntegralImpl(T)(T)
{
return 1;
}