view tangotests/c.d @ 204:11fe364b9a3e trunk

[svn r220] Added: test results for [219]
author lindquist
date Tue, 13 May 2008 16:16:50 +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();
}