view compile/f/forward_reference_18_B.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +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_B;

struct T(FOO){
	S s;
}

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