changeset 624:0e772400644c

Added test folder for compiler tests. Added forward01.d.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Fri, 11 Jan 2008 14:37:45 +0100
parents e2cd28cfc6ae
children 7949bb4c1618
files trunk/src/test/forward01.d
diffstat 1 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/trunk/src/test/forward01.d	Fri Jan 11 14:37:45 2008 +0100
@@ -0,0 +1,7 @@
+/++
+  Author: Jari-Matti Mäkelä
++/
+
+// Impossible circular composition.
+struct A { B b; }
+struct B { A a; }