view run/t/template_20_B.d @ 1586:a74f0139fc3d

Fix tests using typeof on types.
author Christian Kamm <kamm incasoftware de>
date Thu, 21 Aug 2008 15:42:21 +0200
parents 61617b6d35af
children
line wrap: on
line source

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

module dstress.run.t.template_20_B;

template T(double f){
	double cf = f;
}

int main(){
	const double a = 1.2;
	assert(T!(a).cf == a);

	const double b = -0.8;
	assert(T!(b).cf == b);

	return 0;
}