view run/t/tuple_22_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 fcafb2c9da5f
children
line wrap: on
line source

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

// @author@	Manuel König <manuelk89@gmx.net>
// @date@	2007-04-13
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1138
// @desc@	[Issue 1138] ICE when tuple template gets indexed

module dstress.run.t.tuple_22_B;

template Tuple(T...){
	alias T items;
}

void dummy(...){
}

int main(){
	dummy(Tuple!(1, 2, 3).items);
	return 0;
}