view nocompile/t/this_10_E.d @ 1576:b3e16c86558e

[Issue 1398] New: GDC doesn't generate correct code <mariusmuja@gmail.com> 2007-08-04 http://d.puremagic.com/issues/show_bug.cgi?id=1398
author thomask
date Thu, 21 Feb 2008 15:20:08 +0000
parents 902d2c168029
children
line wrap: on
line source

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

// @author@	bobef <bobef@lessequal.com>
// @date@	2006-03-02
// @uri@	news:du4ong$1b0n$2@digitaldaemon.com
// @desc@	func.c:373: virtual void FuncDeclaration::semantic3(Scope*): Assertion `0' failed.
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=723

// __DSTRESS_ELINE__ 17

module dstress.nocompile.t.this_10_E;


template T(){
	class B : A{
		this(){
		}
	}

	class A : B{
	}
}

void main(){
	mixin T!();
}