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

15 lines
203 B
D

// https://issues.dlang.org/show_bug.cgi?id=19320
// REQUIRED_ARGS: -O -cov
auto staticArray(U, T)(T)
{
U[] theArray = void;
return theArray;
}
void main()
{
staticArray!(int, int)(3);
}