view nocompile/t/template_58_A2.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 5b8f89bc1b52
children
line wrap: on
line source

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

// @author@	Frits van Bommel <fvbommel@wxs.nl>
// @date@	2007-01-24
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=884
// @desc@	[Issue 884] Segfault in recursive template

module dstress.nocompile.t.template_58_A2;

template Inner(Ts...) {
	const Inner = .Inner!((Ts));
}

auto x = Inner!();