view tangotests/a.d @ 242:ab43d1e1bf2a trunk

[svn r259] Enabled ASM for the GC, this closes #45 by saving the registers on the stack.
author lindquist
date Mon, 09 Jun 2008 02:05:02 +0200
parents 4c577c2b7229
children
line wrap: on
line source

class Foo
{
    this(int j)
    {
        i = pi = j;
    }

    int i;

private:

    int pi;
}

class Bar : Foo
{
    this(int j)
    {
        super(j);
        baz = 42;
    }

    int baz;
}

void func()
{
    auto bar = new Bar(12);
}

void main()
{
    func();
}