# HG changeset patch # User thomask # Date 1099474778 0 # Node ID b466817daa0577c39c884faaeba9f026b694e020 # Parent c8e5c21a1e6467e2c0dc2b57f1bf83ee981cde26 ndove (http://www.dsource.org/forums/profile.php?mode=viewprofile&u=142) http://www.dsource.org/forums/viewtopic.php?t=402 diff -r c8e5c21a1e64 -r b466817daa05 compile/forward_reference_01.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/compile/forward_reference_01.d Wed Nov 03 09:39:38 2004 +0000 @@ -0,0 +1,23 @@ +// @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; +} + diff -r c8e5c21a1e64 -r b466817daa05 compile/forward_reference_02.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/compile/forward_reference_02.d Wed Nov 03 09:39:38 2004 +0000 @@ -0,0 +1,23 @@ +// @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_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; +} +