annotate run/l/length_11_A.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents 44d9b47ed060
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1471
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
1 // $HeadURL$
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
2 // $Date$
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
3 // $Author$
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
4
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
5 // @author@ Nick Atamas <nick.atamas@gmail.com>
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
6 // @date@ 2007-02-04
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=929
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
8 // @desc@ [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
9
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
10 module dstress.run.l.length_11_A;
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
11
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
12 int main(){
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
13 uint[char[]][] fractal;
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
14 fractal.length = 10;
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
15 if(10 != fractal.length){
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
16 assert(0);
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
17 }
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
18
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
19 return 0;
44d9b47ed060 [Issue 929] Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang
thomask
parents:
diff changeset
20 }