mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 18:33:14 +01:00
8 lines
91 B
D
8 lines
91 B
D
module arrays4;
|
|
|
|
void main()
|
|
{
|
|
auto arr = new int[4];
|
|
{auto arrcat = arr ~ arr;}
|
|
}
|