view tangotests/r.d @ 221:68687d8c3e9a trunk

[svn r237] some inline asm output now seems to work, see tangotests/asm2.d
author lindquist
date Fri, 06 Jun 2008 20:51:43 +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();
}