view tangotests/a.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 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();
}