view run/associative_array_10.d @ 1523:8a8d5cb8775c

fixed X86_64 issue
author thomask
date Fri, 27 Apr 2007 17:26:33 +0000
parents b8c0195059d9
children ec5e144583ea
line wrap: on
line source

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

// @author@	Ben Hinkle <ben.hinkle@gmail.com>
// @date@	2005-03-25
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3356

module dstress.run.associative_array_10;

int main() {
	int[real] x;
	real d=22;
	x[d] = 44;
	assert( x[d] == 44 );
	return 0;
}