view nocompile/template_06.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents a00ec5cd9f07
children 774e02c900da
line wrap: on
line source

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

// @author@	Patrick Down <Patrick_member@pathlink.com>
// @date@	2004-06-20
// @uri@	news:cb346n$1uk0$1@digitaldaemon.com
// @uri@	nntp://digitalmars.com/digitalmars.D.bugs/565

module dstress.nocompile.template_06;

template foo(Type, alias Func){
	int foo(Type t){
		return Func(t);
	}
}

template foo(Type){
	int foo(Type t){
		static int f(Type a){
			return a;
		}
		return foo!(Type, f)(t);
	}
}

int main(){
	foo!(int)(1);
	return 0;
}