changeset 1573:81b51faeeefe

[Issue 1191] New: multidimensional associative array assignment doesn't behave as with DMD <d@brian.codekitchen.net> 2007-04-27 http://d.puremagic.com/issues/show_bug.cgi?id=1191
author thomask
date Thu, 21 Feb 2008 15:19:08 +0000
parents 169ba9b6cb5d
children 40a86c79a1c4
files run/a/associative_array_24_A.d run/a/associative_array_24_B.d
diffstat 2 files changed, 55 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/a/associative_array_24_A.d	Thu Feb 21 15:19:08 2008 +0000
@@ -0,0 +1,26 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<d@brian.codekitchen.net>
+// @date@	2007-04-27
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1191
+// @desc@	[Issue 1191] New: multidimensional associative array assignment doesn't behave as with DMD
+
+module dstress.run.a.associative_array_24_A;
+
+int main(){
+	int stuff[char[]][char[]];
+	stuff["first"]["second"] = 5;
+	if(1 != stuff.length){
+		assert(0);
+	}
+	if(1 != stuff["first"].length){
+		assert(0);
+	}
+	if(5 != stuff["first"]["second"]){
+		assert(0);
+	}
+
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/a/associative_array_24_B.d	Thu Feb 21 15:19:08 2008 +0000
@@ -0,0 +1,29 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<d@brian.codekitchen.net>
+// @date@	2007-04-27
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1191
+// @desc@	[Issue 1191] New: multidimensional associative array assignment doesn't behave as with DMD
+
+module dstress.run.a.associative_array_24_B;
+
+int main(){
+	int stuff[char[]][char[]][char[]];
+	stuff["first"]["second"]["third"] = 5;
+	if(1 != stuff.length){
+		assert(0);
+	}
+	if(1 != stuff["first"].length){
+		assert(0);
+	}
+	if(1 != stuff["first"]["second"].length){
+		assert(0);
+	}
+	if(5 != stuff["first"]["second"]["third"]){
+		assert(0);
+	}
+
+	return 0;
+}