view run/t/tuple_16_D.d @ 1514:891196dcfc3a

[Issue 1068] stack corruption with mixins and function templates Tomasz Stachowiak <h3r3tic@mat.uni.torun.pl> 2007-03-19 http://d.puremagic.com/issues/show_bug.cgi?id=1068
author thomask
date Wed, 25 Apr 2007 17:46:32 +0000
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_D;

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

const char[] foo[2] = ["a","b"];

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

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