dmd/compiler/test/runnable/test13504.d
2022-07-09 18:53:07 +02:00

11 lines
118 B
D

// REQUIRED_ARGS: -O -cov
bool func(T)()
{
return true;
}
void main()
{
assert(func!int() || int.sizeof);
}