diff nocompile/t/template_58_C2.d @ 1518:5b8f89bc1b52

fixed typo
author thomask
date Fri, 27 Apr 2007 17:21:55 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/t/template_58_C2.d	Fri Apr 27 17:21:55 2007 +0000
@@ -0,0 +1,16 @@
+// $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_C2;
+
+template Inner(Ts...) {
+	const Inner = Inner!((Ts));
+}
+
+auto x = Inner!();