view nocompile/slice_10.d @ 374:f87ba6507260

added missing meta-data
author thomask
date Thu, 31 Mar 2005 09:01:33 +0000
parents bb7273309924
children b8c0195059d9
line wrap: on
line source

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

// @author@	Manfred Nowak <svv1999@hotmail.com>
// @date@	2005-03-06
// @uri@	news:d0fg6a$dfa$1@digitaldaemon.com

// __DSTRESS_ELINE__ 17

module dstress.nocompile.slice_10;

void test(){
	int[] array;
	array.length=4;
	float f=.2;
	array[1..2]= array[f..1.3];
}