view tangotests/r.d @ 266:5d2f4814bb2e trunk

[svn r287] update to test statistics generation
author ChristianK
date Sun, 15 Jun 2008 12:58:48 +0200
parents 0dec7b3727ea
children
line wrap: on
line source

extern(C) int printf(char*, ...);

class C
{
    void dump()
    {
        printf("C dumped\n");
    }
}

void heap()
{
    auto c = new C;
    c.dump();
}

void stack()
{
    scope c = new C;
    c.dump();
}

void main()
{
    heap();
    stack();
}