annotate run/a/array_initialization_28_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 daef239f37cf
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1187
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
1 // $HeadURL$
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
2 // $Date$
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
3 // $Author$
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
4
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
5 // @author@ Frank Benoit <benoit@tionex.de>
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
6 // @date@ 2006-10-09
1320
daef239f37cf sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1187
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=411
1187
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
8 // @desc@ [Issue 411] New: array alloc with size from another array
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
9
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
10 module dstress.run.a.array_initialization_28_A;
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
11
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
12 int main(){
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
13 int[] asso;
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
14 asso ~= 3;
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
15
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
16 byte[] x = new byte[](asso[0]);
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
17
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
18 if(x.length != 3){
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
19 assert(0);
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
20 }
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
21
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
22 return 0;
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
23 }
69d80e62f44c [Issue 411] New: array alloc with size from another array
thomask
parents:
diff changeset
24