view run/o/opSlice_01_N.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 b8c0195059d9
children
line wrap: on
line source

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

// @author@	Stewart Gordon <smjg_1998@yahoo.com>
// @date@	2005-05-31
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=4185
// @desc@	Internal error: ../ztc/cod1.c 2503

module dstress.run.o.opSlice_01_N;

int main(){
	idouble arr[4][2]=0i;

	arr[0][1]=1i;

	arr[1..3] = arr[0];

	if(arr[0][0]){
		assert(0);
	}
	if(!arr[0][1]){
		assert(0);
	}
	if(arr[1][0]){
		assert(0);
	}
	if(!arr[1][1]){
		assert(0);
	}
	if(arr[2][0]){
		assert(0);
	}
	if(!arr[2][1]){
		assert(0);
	}
	if(arr[3][0]){
		assert(0);
	}
	if(arr[3][1]){
		assert(0);
	}

	return 0;
}