view run/bug_cod2_4211_N.d @ 1586:a74f0139fc3d

Fix tests using typeof on types.
author Christian Kamm <kamm incasoftware de>
date Thu, 21 Aug 2008 15:42:21 +0200
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_N;

double[1] a;
double[1] b;

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

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

	double[] arr=concat();

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