view nocompile/c/class_22_E.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents 902d2c168029
children
line wrap: on
line source

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

// @author@	bobef <bobef@lessequal.com>
// @date@	2006-03-01
// @uri@	news:du4ojh$1b0n$1@digitaldaemon.com
// @desc@	dmd: toobj.c:191: virtual void ClassDeclaration::toObjFile(): Assertion `!scope' failed.
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=717

// __DSTRESS_ELINE__ 16

module dstress.run.c.class_22_E;

template T(){
	class B : A{
	}

	class A{
	}
}

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