view norun/bounds_checking_06.d @ 454:cebb2a0f96d0

doppelgaenger cleanup
author thomask
date Tue, 19 Apr 2005 15:03:38 +0000
parents
children 30ad3655b9b0
line wrap: on
line source

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

// __DSTRESS_ELINE__ 12

module dstress.norun.bounds_checking_06;

static ~this(){
	int[] arr;
	arr.length=3;
	arr[4]=4;
}

int main(){
	return 0;
}