view run/u/unittest_11_C.d @ 1469:0767a3cee5f2

[Issue 928] nested struct definition in unittest section of a templated class, hangs DMD Daniel (Zuu) <dkm4i1@gmail.com> 2007-02-03 http://d.puremagic.com/issues/show_bug.cgi?id=928
author thomask
date Thu, 05 Apr 2007 16:35:18 +0000
parents
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_C;

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

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