view nocompile/t/template_25_B.d @ 1518:5b8f89bc1b52

fixed typo
author thomask
date Fri, 27 Apr 2007 17:21:55 +0000
parents b8c0195059d9
children
line wrap: on
line source

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

// @author@	Sean Kelly <sean@f4.ca>
// @date@	2006-01-24
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=6068

// __DSTRESS_ELINE__ 18

module dstress.nocompile.t.template_25_B;

template fn( T ) {
	void fn() {
	}
}

template fn( T ) {
	void fn( T val ) {
	}
}

void main() {
	fn!(int)(1);
}