view run/t/tuple_25_A.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents 94c9f2f9af4b
children
line wrap: on
line source

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

// @author@	<onlystupidspamhere@yahoo.se>
// @date@	2007-06-06
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1259
// @desc@	[Issue 1259] Inline build triggers an illegal error msg "Error: S() is not an lvalue"

module dstress.run.t.tuple_25_A;

struct S(T...) {
	S opMul_r(double r) {
		return S();
	}
	
	S!(1) opDiv(R)(R r) {
		return S!(1)();
	}
}

int main() {
	S!(1) a;
	S!(0) b;
	auto c = 1.0 * a / b;

	if(S!(1)() != c){
		assert(0);
	}
	return 0;
}