annotate nocompile/s/struct_29_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 51ad523322be
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1398
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
1 // $HeadURL$
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
2 // $Date$
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
3 // $Author$
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
4
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
5 // @author@ downs <default_357-line@yahoo.de>
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
6 // @date@ 2007-03-07
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=1030
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
8 // @desc@ [Issue 1030] ICE one-liner; struct in delegate
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
9
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
10 module dstress.nocompile.s.struct_29_A;
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
11
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
12 void main() {
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
13 void delegate() test = {
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
14 struct test2{
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
15 ;
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
16 }
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
17 };
51ad523322be [Issue 1030] ICE one-liner; struct in delegate
thomask
parents:
diff changeset
18 }