view run/t/template_45_D.d @ 1219:5d739c1b003f

[Issue 465] New: errors when trying to use static templated methods Tomasz Stachowiak <h3r3tic@mat.uni.torun.pl> 2006-10-27 news:bug-465-3@http.d.puremagic.com/issues/
author thomask
date Thu, 23 Nov 2006 10:44:36 +0000
parents
children daef239f37cf
line wrap: on
line source

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

// @author@	Tomasz Stachowiak <h3r3tic@mat.uni.torun.pl>
// @date@	2006-10-27
// @uri@	news:bug-465-3@http.d.puremagic.com/issues/
// @desc@	[Issue 465] New: errors when trying to use static templated methods

module dstress.run.t.template_45_D;

ifloat status;

struct S {
	static void func(T)(T a) {
		status += a;
        }
}

int main() {
	status = 1.0Fi;

	S s;
	s.func!(ifloat)(2.0Fi);

	if(status != 3.0Fi){
		assert(0);
	}

	return 0;
}