# HG changeset patch # User thomask # Date 1203607148 0 # Node ID 81b51faeeefe3107ccfc70384abe57a129b246b5 # Parent 169ba9b6cb5d1f50b382dcbe5f156086ef56c984 [Issue 1191] New: multidimensional associative array assignment doesn't behave as with DMD 2007-04-27 http://d.puremagic.com/issues/show_bug.cgi?id=1191 diff -r 169ba9b6cb5d -r 81b51faeeefe run/a/associative_array_24_A.d --- /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@ +// @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; +} diff -r 169ba9b6cb5d -r 81b51faeeefe run/a/associative_array_24_B.d --- /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@ +// @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; +}