view run/bug_cod2_4211_J.d @ 516:592f9ae41ba5

post DMD-0.122 review [1+2/n]
author thomask
date Tue, 10 May 2005 23:59:14 +0000
parents e56d6f1cb48e
children 1e6afb94ce6d
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

// __DSTRESS_DFLAGS__ -O

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;
}