view tangotests/r.d @ 134:0dec7b3727ea trunk

[svn r138] forgot the latest tests
author lindquist
date Mon, 14 Jan 2008 05:32:24 +0100
parents
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();
}