view run/super_08.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents e77e4444c170
children 62c9b99c3a16
line wrap: on
line source

// $HeadURL$
// $Date$
// $Base$

// @author@     Thomas Kuehne <thomas-dloop@kuehne.thisisspam.cn>
// @date@       2004-12-10
// @uri@        news:sr8p82-lu3.ln1@kuehne.cn
// @uri@        nntp://digitalmars.com/digitalmars.D.bugs/2528

module dstress.run.super_08;

int dummy;

class Parent{
	this(){
		dummy++;
	}
}

class Child : Parent{
	this(){
		super();
	}
}

int main(){
	Child o = new Child();
	return dummy-1;
}