view nocompile/o/overload_25_C.d @ 577:74350025e311

Regan Heath <regan@netwin.co.nz> 2005-06-10 news:opsr4tl4lz23k2f5@nrage.netwin.co.nz
author thomask
date Sat, 11 Jun 2005 06:56:15 +0000
parents
children 978a083bb0d0
line wrap: on
line source

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

// @author@	Regan Heath <regan@netwin.co.nz>
// @date@	2005-06-10
// @uri@	news:opsr4tl4lz23k2f5@nrage.netwin.co.nz

module dstress.nocompile.o.overload_25_C;

template testT(T){
	size_t test(T t){
		return t.max;
	}
}

size_t test(ubyte t){
	return t.max;
}

mixin testT!(ubyte);