view run/t/template_63_B.d @ 1609:3c803614a8fb

Add a few missing abstracts.
author Christian Kamm <kamm incasoftware de>
date Sun, 26 Apr 2009 13:38:23 +0200
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_B;

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

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

	return 0;
}