mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
203 B
D
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);
|
|
}
|