view compile/f/forward_reference_18_A.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents 1252ffd671ef
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Manuel König <manuelk89@gmx.net>
// @date@	2007-01-23
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=877
// @desc@	[Issue 877] forward references in interdependent template/struct definitions since v1.0

module dstress.compile.f.forward_reference_18_A;

struct S{
	T!(int)* pt;
}

struct T(FOO){
	S s;
}