view run/memory_management_02.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +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;
}