comparison run/l/length_11_A.d @ 1471:44d9b47ed060

[Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang Nick Atamas <nick.atamas@gmail.com> 2007-02-04 http://d.puremagic.com/issues/show_bug.cgi?id=929
author thomask
date Thu, 05 Apr 2007 16:36:20 +0000
parents
children
comparison
equal deleted inserted replaced
1470:86c8a8d4694b 1471:44d9b47ed060
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Nick Atamas <nick.atamas@gmail.com>
6 // @date@ 2007-02-04
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=929
8 // @desc@ [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
9
10 module dstress.run.l.length_11_A;
11
12 int main(){
13 uint[char[]][] fractal;
14 fractal.length = 10;
15 if(10 != fractal.length){
16 assert(0);
17 }
18
19 return 0;
20 }