view compile/forward_reference_01.d @ 1330:f3f715978184

Georg Wrede <georg@iki.fi> 2007-01-07 mail:45A120F5.1050108@iki.fi
author thomask
date Sat, 13 Jan 2007 10:33:49 +0000
parents 8a2ff09d62cb
children 62c9b99c3a16
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
// @url@	http://www.dsource.org/forums/viewtopic.php?t=402

module dstress.compile.forward_reference_01;

class Something{
   Bounds   bounds;
   Position position;
} 

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

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