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

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

// @author@	Daniel <Daniel919@web.de>
// @date@	2007-02-22
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=995
// @desc@	[Issue 995] compile-time function return element of Tuple / const array

module dstress.run.t.tuple_16_A;

template eval(A...) {
	alias A eval;
}

alias eval!("a","b") foo;

char[] test(int i){
	return foo[i];
}

int main(){
	if("a" != test(0)){
		assert(0);
	}
	return 0;
}