view run/b/bug_toobj_191_D.d @ 1089:03b5056496f1

pre DMD-0.163 review
author thomask
date Wed, 19 Jul 2006 21:00:13 +0000
parents c0ba153df32f
children
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_D;

struct Outer(T){
	Inner i;

	struct Inner{
		T t;
	}
}

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