view run/u/unittest_11_B.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
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;
}