view run/t/tuple_17_A.d @ 1564:1d41f2132ef4

r8717@birke: tk | 2007-09-30 10:45:56 +0200 [Issue 1532] Template instance cannot use class locals as template parameters <samukha@voliacable.com> 2007-09-07 http://d.puremagic.com/issues/show_bug.cgi?id=1532
author thomask
date Sun, 30 Sep 2007 09:46:24 +0000
parents 24d5585f4fc0
children
line wrap: on
line source

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

// @author@	Daniel <Daniel919@web.de>
// @date@	2007-02-17
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=975
// @desc@	[Issue 975] compile-time const array makes dmd crash

module dstress.run.t.tuple_17_A;

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

const int foo[5] = [0,1,2,3,4];

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