Mercurial > projects > ldc
annotate tests/mini/gc1.d @ 883:b52d5de7783f
GC defines and linkage changes.
author | Christian Kamm <kamm incasoftware de> |
---|---|
date | Thu, 08 Jan 2009 18:20:02 +0100 |
parents | 1bb99290e03a |
children |
rev | line source |
---|---|
lindquist@341 | 1 module tangotests.gc1; |
lindquist@341 | 2 |
lindquist@341 | 3 void main() |
lindquist@341 | 4 { |
lindquist@341 | 5 int[] arr; |
lindquist@341 | 6 |
lindquist@341 | 7 for (int i=0; i<100; ++i) |
lindquist@341 | 8 { |
lindquist@341 | 9 arr ~= new int[1000]; |
lindquist@341 | 10 } |
lindquist@341 | 11 |
lindquist@341 | 12 printf("arr.length = %u\n", arr.length); |
lindquist@341 | 13 } |
lindquist@341 | 14 |
lindquist@341 | 15 extern(C) int printf(char*, ...); |