view run/bug_cod2_4211_J.d @ 1602:56d43974b468

Fix broken tests fvbommel pointed out in #2.
author Christian Kamm <kamm incasoftware de>
date Fri, 06 Mar 2009 15:48:16 +0100
parents 1e6afb94ce6d
children
line wrap: on
line source

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

// @author@	MicroWizard <MicroWizard_member@pathlink.com>
// @date@	2005-04-27
// @uri@	news:d4or18$1th1$1@digitaldaemon.com

module dstress.run.bug_cod2_4211_J;

ifloat[1] a;
ifloat[1] b;

ifloat[] concat() {
	return a~b;
}

int main(){
	a[]=1.0fi;
	b[]=3.0fi;

	ifloat[] arr=concat();

	assert(arr.length==2);
	assert(arr[0]==1.0fi);
	assert(arr[1]==3.0fi);
	
	return 0;
}