view nocompile/s/super_13.d @ 769:ce5513bd43f0

minor dmd-0.141 review
author thomask
date Fri, 09 Dec 2005 22:40:57 +0000
parents
children
line wrap: on
line source

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

// __DSTRESS_ELINE__ 22

module dstress.nocompile.s.super_13;

class A{
	int i;
	
	this(){
		i = 2;
	}
}

class B : A{
	this(){
		if(i){
			return;
		}
		super();
	}
}