view run/bug_cgcs_353_L.d @ 492:e56d6f1cb48e

a[1]~b[1] MicroWizard <MicroWizard_member@pathlink.com> 2005-04-27 news:d4or18$1th1$1@digitaldaemon.com
author thomask
date Thu, 28 Apr 2005 06:55:43 +0000
parents
children ec5e144583ea
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_cgcs_353_L;

cdouble[1] a;
cdouble[1] b;

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

int main(){
	a[]=0.5+1.0i;
	b[]=0.5+3.0i;

	cdouble[] arr=concat();

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