view run/slice_09.d @ 897:c2931e457792

updated tests to DMD-0.149
author thomask
date Wed, 08 Mar 2006 14:06:40 +0000
parents 38ea1bb385b6
children
line wrap: on
line source

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

module dstress.run.slice_09;

int main(){
	bool[] a;
	a.length=2;
	a[] = true;
	assert(a[0]);
	assert(a[1]);
	
	bool[] b;
	b.length=2;
	assert(!b[0]);
	assert(!b[1]);

	try{
		b[1..2] = a[0..1];
	}catch(Exception e){
		assert(0);
	}
	return 0;
}