Files
ldc/tests/mini/phobos/bug57.d
2008-08-12 00:54:32 +02:00

11 lines
124 B
D

import std.stdio;
class Foo {}
void func3()
{
Foo[1] test=[new Foo];
writefln(test);
}
void main() {
func3();
}