view run/s/struct_28_C.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 3da73e4504c4
children
line wrap: on
line source

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

// @author@	Stewart Gordon <smjg@iname.com>
// @date@	2007-02-22
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=997
// @desc@	[Issue 997] [Regression] Struct-returning function that conditionally passes the result of another function straight through doesn't work (NRVO bug?)

module dstress.run.s.struct_28_C;

struct Rect {
    int left, top, right, bottom;
}

Rect foo(bool indirect) {
	if(indirect){
		Rect r = defaultRect();
		return r;
	}else{
		Rect result;
		return result;
	}
}

Rect defaultRect(){
	return Rect.init;
}

int main() {
	if(foo(false) != foo(true)){
		assert(0);
	}
	return 0;
}