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

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

// @author@	Sean Kelly <sean@f4.ca>
// @date@	2006-02-09
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=6196

module dstress.run.t.template_28_A;

struct Empty{
}

class Tuple(HeadType, TailType){
}

template MakeTuple(T1, T2){
	alias Tuple!(T1, Tuple!(T2)) MakeTuple;
}

template MakeTuple(T1=Empty, T2=Empty, T3=Empty){
	static if(is(T1 == Empty))
		alias Empty MakeTuple;
	else
		alias Tuple!(T1,MakeTuple!(T2,T3)) MakeTuple;
}

int main(){
	auto t = new MakeTuple!(int,int)();
	return 0;
}