mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 03:13:13 +01:00
10 lines
135 B
D
10 lines
135 B
D
module arrays4;
|
|
|
|
void main()
|
|
{
|
|
auto arr = new int[4];
|
|
auto arrcat = arr ~ arr;
|
|
assert(arrcat.length == arr.length * 2);
|
|
}
|
|
|