mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
11 lines
124 B
D
11 lines
124 B
D
import std.stdio;
|
|
class Foo {}
|
|
void func3()
|
|
{
|
|
Foo[1] test=[new Foo];
|
|
writefln(test);
|
|
}
|
|
void main() {
|
|
func3();
|
|
}
|