changeset 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 eb761d8edcca
children 26bcea00b742
files compile/t/tuple_18_A.d compile/t/tuple_18_B.d compile/t/tuple_18_C.d compile/t/tuple_18_D.d compile/t/tuple_18_E.d
diffstat 5 files changed, 98 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/t/tuple_18_A.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_A;
+
+template Tuple(Elements...) {
+	alias Elements Tuple;
+}
+
+struct foo {
+	Tuple!() elements;
+}
+
+static assert(foo.elements.length == 0);
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/t/tuple_18_B.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_B;
+
+template Tuple(Elements...) {
+	alias Elements Tuple;
+}
+
+struct foo {
+	Tuple!(int) elements;
+}
+
+static assert(foo.elements.length == 1);
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/t/tuple_18_C.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_C;
+
+template Tuple(Elements...) {
+	alias Elements Tuple;
+}
+
+union foo {
+	Tuple!(int) elements;
+}
+
+static assert(foo.elements.length == 1);
--- /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);
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/t/tuple_18_E.d	Sun Mar 11 11:18:25 2007 +0000
@@ -0,0 +1,18 @@
+// $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_E;
+
+template Tuple(Elements...) {
+	alias Elements Tuple;
+}
+
+Tuple!() elements;
+
+static assert(elements.length == 0);