mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
15 lines
120 B
D
15 lines
120 B
D
struct S { int i; }
|
|
|
|
auto f()
|
|
{
|
|
S[] ss;
|
|
ss.length = 1;
|
|
return 0;
|
|
}
|
|
|
|
enum a = f();
|
|
|
|
void main()
|
|
{
|
|
f();
|
|
}
|