view run/b/bug_optimize_294_F.d @ 1332:3936e3440370

fixed cut'n paste errors
author thomask
date Sat, 20 Jan 2007 11:03:41 +0000
parents e6887749b811
children
line wrap: on
line source

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

// @author@	Boris Kolar <boris.kolar@globera.com>
// @date@	2006-11-29
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=618
// @desc@	[Issue 618] New: The following program crashes dmd.exe 0.175

module dstress.run.b.bug_optimize_294_F;

struct Foo(T) {
	int dummy;
}

int main() {
	if ((Foo!(char)).init == (Foo!(char)).init){
		return 0;
	}
	return 1;
}