diff compile/t/tuple_18_D.d @ 1421:8eb7223bbe9a

[Issue 1026] dmd SEGV when checking length of Tuple elements when length == 0 Russ Lewis <webmaster@villagersonline.com> 2007-03-05 http://d.puremagic.com/issues/show_bug.cgi?id=1026
author thomask
date Sun, 11 Mar 2007 11:18:25 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/t/tuple_18_D.d	Sun Mar 11 11:18:25 2007 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Russ Lewis <webmaster@villagersonline.com>
+// @date@	2007-03-05
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1026
+// @desc@	[Issue 1026] dmd SEGV when checking length of Tuple elements when length == 0
+
+module dstress.compile.t.tuple_18_D;
+
+template Tuple(Elements...) {
+	alias Elements Tuple;
+}
+
+union foo {
+	Tuple!() elements;
+}
+
+static assert(foo.elements.length == 0);