mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 11:23:14 +01:00
15 lines
208 B
D
15 lines
208 B
D
module tangotests.gc1;
|
|
|
|
void main()
|
|
{
|
|
int[] arr;
|
|
|
|
for (int i=0; i<100; ++i)
|
|
{
|
|
arr ~= new int[1000];
|
|
}
|
|
|
|
printf("arr.length = %u\n", arr.length);
|
|
}
|
|
|
|
extern(C) int printf(char*, ...); |