view trunk/src/test/forward02.d @ 625:7949bb4c1618

Added test case forward02.d.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Fri, 11 Jan 2008 14:42:00 +0100
parents
children 50f22f0467e6
line wrap: on
line source

/++
  Author: Jari-Matti Mäkelä
+/

// Possible circular composition.
struct A { B* b; /*because of pointer*/ }
struct B { A a; }
// Equivalent to:
struct A { A* a }