view run/nested_function_04.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents a33ad7189d21
children 7a397590d6e0
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
// @uri@	nntp://digitalmars.com/digitalmars.D.bugs/551

module dstress.run.nested_function_04;

void fn( inout 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;
}