view run/nested_function_01.d @ 1330:f3f715978184

Georg Wrede <georg@iki.fi> 2007-01-07 mail:45A120F5.1050108@iki.fi
author thomask
date Sat, 13 Jan 2007 10:33:49 +0000
parents a33ad7189d21
children 52c9e86b6486
line wrap: on
line source

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

// @author@	Charlie <Charlie_member@pathlink.com>
// @date@	2004-07-17
// @uri@	news:casnln$1oe1$1@digitaldaemon.com
// @url@	nntp://digitalmars.com/digitalmars.D.bugs/551

module dstress.run.nested_function_01;

void fn( out char[] buf ){
	void fn2(){
		assert(buf.length==0);
		assert(buf.sizeof==8);
	}
	fn2();
	assert(buf.length==0);
	assert(buf.sizeof==8);
}

int main(){
	char[] buf;
	assert(buf.length==0);
	assert(buf.sizeof==8);
	fn( buf );
	return 0;
}