view run/u/unittest_11_B.d @ 1619:bebc7472a832

Fix #7.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 18:55:30 +0100
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;
}