view run/in_out_body_01.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents 1e6afb94ce6d
children 6e4063f99377
line wrap: on
line source

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

// @author@	Buchan <kbuchan@xtra.co.nz>
// @date@	2004-11-14
// @uri@	news:opshfzxz0b44buww@simon.homenet
// @uri@	nntp://digitalmars.com/digitalmars.D.bugs/2262

// __DSTRESS_TORTURE_BLOCK__ -release

module dstress.run.in_out_body_01;

struct MyStruct{
	int i;
}

void outer(){
	MyStruct inner(){
		MyStruct s;
		s.i = 1;
		return s;
	}
	assert(inner.i==1);
}

int main(){
	outer();
	return 0;
}