view tangotests/c.d @ 226:4145266ff4bd trunk

[svn r242] fixed (I think) arg_pointer inline asm args
author lindquist
date Sat, 07 Jun 2008 19:04:26 +0200
parents 68a7dd38c03c
children
line wrap: on
line source

class Foo
{
    int i;
}

class Bar : Foo
{
    int j;
}

void func()
{
    scope c = new Bar;
    func2(c);
}

void func2(Bar c)
{
    c.i = 123;
}

void main()
{
    func();
}