view nocompile/t/templatde_58_D.d @ 1464:92ed738d5fad

[Issue 884] Segfault in recursive template Frits van Bommel <fvbommel@wxs.nl> 2007-01-24 http://d.puremagic.com/issues/show_bug.cgi?id=884
author thomask
date Thu, 05 Apr 2007 10:31:32 +0000
parents
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_D;

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

auto x = Inner!();