view tests/mini/gc1.d @ 618:c9aa338280ed

Removed some excessive llvm type logging
author tomas@myhost
date Sun, 28 Sep 2008 15:22:39 +0200
parents 1bb99290e03a
children
line wrap: on
line source

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*, ...);