view addon/constructor_04_A.d @ 87:dfbc0188e5aa

shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp> news://20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp nttp://digitalmars.com/D.gnu:829
author thomask
date Mon, 01 Nov 2004 12:44:06 +0000
parents
children a33ad7189d21
line wrap: on
line source

// @author@	shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp>
// @date@	2004-11-01
// @uri@	news://20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp
// @url@	nttp://digitalmars.com/D.gnu:829

// see dstress.run.constructor_04
module dstress.addon.constructor_04_A;

class Base{
	this(){
	}
}

class Derived : Base{
	private:
	// constructor will be wrongly generated here, so it is private.
}