view addon/constructor_04_A.d @ 1618:87a6ab8f478d

Returns of non-void expressions are no longer valid in void functions.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 18:48:11 +0100
parents cb22f2d42678
children
line wrap: on
line source

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

// @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@	nntp://digitalmars.com/D.gnu/829

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

class Base{
	this(){
	}
}

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