view run/t/tuple_16_B.d @ 1366:cb2353467b1c

[Issue 995] compile-time function return element of Tuple / const array Daniel <Daniel919@web.de> 2007-02-22 http://d.puremagic.com/issues/show_bug.cgi?id=995
author thomask
date Mon, 26 Feb 2007 11:32:43 +0000
parents
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_B;

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

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

int main(){
	if("a" != eval!(foo[0])){
		assert(0);
	}
	return 0;
}