view run/t/template_class_13_O.d @ 1619:bebc7472a832

Fix #7.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 18:55:30 +0100
parents 660f9196b52a
children
line wrap: on
line source

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

module dstress.run.t.template_class_13_O;

class C(cfloat f){
	cfloat cf = f;
}

int main(){
	const cfloat a = 1.2f + 2.1fi;
	auto sa = new C!(a);
	if(sa.cf != a){
		assert(0);
	}

	const cfloat b = -0.8f - 0.1fi;
	auto sb = new C!(b);
	if(sb.cf != b){
		assert(0);
	}

	return 0;
}