view tests/mini/classes13_bug239.d @ 1185:8baf611f0009

Fix nested references to 'ref' foreach variables. These "walk around" the array being iterated over, so they're a bit trickier than other variables to get right.
author Frits van Bommel <fvbommel wxs.nl>
date Wed, 01 Apr 2009 00:01:44 +0200
parents 9d308feaec27
children
line wrap: on
line source

extern(C) int printf(char*, ...);

class A {
    bool Afoo = false;
    void foo() { Afoo = true; }
}

class B : A {}

class C : B {
    bool Cfoo = false;
    void foo() { Cfoo = true; }
}

void main()
{
        scope c1 = new C();
        c1.foo();
	assert(c1.Cfoo && !c1.Afoo);
	
	scope c2 = new C();
	c2.B.foo();
	assert(!c2.Cfoo && c2.Afoo);

	scope c3 = new C();
	c3.A.foo();
	assert(!c3.Cfoo && c3.Afoo);
}