view compile/forward_reference_02.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 62c9b99c3a16
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142)
// @date@	2004-10-12
// @uri@	http://www.dsource.org/forums/viewtopic.php?t=402

module dstress.compile.forward_reference_02;

struct Bounds{
   int Bottom = 0;
   int Left   = 0;
   int Right  = 0;
   int Top    = 0;
}

struct Position{
   int X = 0;
   int Y = 0;
}

class Something{
   Bounds   bounds;
   Position position;
}