view compile/forward_reference_01.d @ 1580:df193e7c4e41

[Issue 1746] New: Enums with member initializers generate undefined symbols <pseus7@gmail.com> 2007-12-22 http://d.puremagic.com/issues/show_bug.cgi?id=1746
author thomask
date Fri, 22 Feb 2008 07:54:21 +0000
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_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;
}