view run/t/tuple_13_C.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 a16119ef8f21
children
line wrap: on
line source

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

// @author@	<kamm@incasoftware.de>
// @date@	2006-12-27
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=756
// @desc@	[Issue 756] IFTI for tuples only works if tuple parameter is last

module dstress.run.t.tuple_13_C;

void foo(U...)(U u, int t) {
}

int main(){
	foo!(int, int)(1, 2, 3);
	return 0;
}