view nocompile/bug_dsymbol_611_A.d @ 529:924f45bc62e9

post DMD-0.123 review [1/n]
author thomask
date Thu, 12 May 2005 18:13:21 +0000
parents 1f6cf5ccfbc9
children 52c9e86b6486
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	h3r3tic <foo@bar.baz>
// @date@	2004-12-26
// @uri@	news:cqml2m$1ujj$1@digitaldaemon.com
// @url@	nntp://digitalmars.com/digitalmars.D.bugs/2604

// __DSTRESS_ELINE__ 21

module dstress.nocompile.bug_dsymbol_611_A;

interface INode{
	INode owner();
}

class BasicNode : INode{
	INode findNode(){
		foreach(INode c ; m_children){
			if(c.owner != this)
				continue;
			return null;
		}
	}

	INode[] m_children;
}