view run/t/tuple_25_A.d @ 1540:94c9f2f9af4b

[Issue 1259] Inline build triggers an illegal error msg "Error: S() is not an lvalue" <onlystupidspamhere@yahoo.se> 2007-06-06 http://d.puremagic.com/issues/show_bug.cgi?id=1259
author thomask
date Sun, 01 Jul 2007 13:17:51 +0000
parents
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;
}