view run/t/template_49_A.d @ 1320:daef239f37cf

sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:59:08 +0000
parents eb667a69ce7a
children
line wrap: on
line source

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

// @author@	Bill Baxter <wbaxter@gmail.com>
// @date@	2006-11-28
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=617
// @desc@	[Issue 617] New: IFTI doesn't use normal promotion rules for non-template parameters

module dstress.run.t.template_49_A;

template foo(T){
	size_t foo(T s, uint i){
		return s.length + i;
	}
}

int main(){
	if(foo("ab", 5) != 7){
		assert(0);
	}
	return 0;
}