view run/memory_management_02.d @ 1594:c970971fb408

Remove nocompile/a/arrayOp_01: since array ops are now supported, it is no longer valid and needs to be replaced by a set of array op tests.
author Christian Kamm <kamm incasoftware de>
date Thu, 28 Aug 2008 17:33:00 +0200
parents caa540af4671
children
line wrap: on
line source

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

module dstress.run.memory_management_02;

void test(int[] arr){
	arr[1]++;
}

int main(){
	int[] c;
	c.length=3;
	c[0]=1;
	c[1]=4;
	c[2]=2;
	test(c);
	assert(c[0]==1);
	assert(c[1]==5);
	assert(c[2]==2);
	return 0;
}