view run/b/bug_toobj_191_A.d @ 600:c0ba153df32f

toobj.c:191: virtual void ClassDeclaration::toObjFile(): Assertion `!scope' failed Ant^2i <Ant^2i_member@pathlink.com> 2005-07-04 news:dabjsi$16h8$1@digitaldaemon.com
author thomask
date Thu, 07 Jul 2005 17:04:51 +0000
parents
children 03b5056496f1
line wrap: on
line source

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

// @author@	Ant^2i <Ant^2i_member@pathlink.com>
// @date@	2005-07-04
// @uri@	news:dabjsi$16h8$1@digitaldaemon.com
// @desc@	toobj.c:191: virtual void ClassDeclaration::toObjFile(): Assertion `!scope' failed	

module dstress.run.b.bug_toobj_191_A;

class Class(T){
	Struct s;

	struct Struct{
		T t;
	}
}

int main(){
	Class!(int) o=new Class!(int);
	return 0;
}