view run/u/unittest_11_B.d @ 1576:b3e16c86558e

[Issue 1398] New: GDC doesn't generate correct code <mariusmuja@gmail.com> 2007-08-04 http://d.puremagic.com/issues/show_bug.cgi?id=1398
author thomask
date Thu, 21 Feb 2008 15:20:08 +0000
parents 0767a3cee5f2
children
line wrap: on
line source

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

// @author@	Daniel (Zuu) <dkm4i1@gmail.com>
// @date@	2007-02-03
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=928
// @desc@	[Issue 928] nested struct definition in unittest section of a templated class, hangs DMD

module dstress.run.u.unittest_11_B;

struct TestType {
}

class MinHeap(NodeType){
	unittest{
		MinHeap!(TestType) foo = new MinHeap!(TestType)();
	}
}

int main(){
	MinHeap!(int) foo = new MinHeap!(int)();
	return 0;
}