view run/b/bug_optimize_294_C.d @ 1269:c99e8aac0e0c

partial review
author thomask
date Fri, 22 Dec 2006 13:17:55 +0000
parents bcb1327a0f5d
children e6887749b811
line wrap: on
line source

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

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

module dstress.run.b.bug_optimize_294_C;

struct Foo(T) {
}

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