view run/bug_20050405_02.d @ 870:38ea1bb385b6

bit -> bool and __DSTRESS_TORTURE_BLOCK__ fixes
author thomask
date Sun, 26 Feb 2006 17:45:46 +0000
parents fc1729579e82
children b8c0195059d9
line wrap: on
line source

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

// @author@     Valéry <valery@freesurf.fr>
// @date@	2005-04-05
// @uri@	news:d2v0pb$gl$1@digitaldaemon.com

module dstress.run.bug_20050405_02;

int main(){
	bool[] a, b;
	a.length = 257;
	b.length = 257;
	b[] = a;
	return 0;
}