view run/t/template_63_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 37c4fce34442
children
line wrap: on
line source

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

// @author@	Leo Dahlmann <leo.dahlmann@gmail.com>
// @date@	2007-04-23
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1178
// @desc@	[Issue 1178] templates - deduction + specialization won't compile

module dstress.run.t.template_63_A;

template outer(O){
	O inner(I)(float x, I i){
		return cast(O) x;
	}
}

int main(){
	if(5.0L != outer!(double).inner!(char[])(5.0f, "hi")){
		assert(0);
	}

	return 0;
}