view run/super_08.d @ 1385:62c9b99c3a16

meta cleanup
author thomask
date Sun, 04 Mar 2007 13:12:19 +0000
parents 52c9e86b6486
children 6e4063f99377
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;
}