view run/bug_cod2_4211_K.d @ 1629:64206c1b3ef2

run/named_entity_02: Fixed wrong test for ⟨ and ⟩. The new values reflect what is used in HTML, DMD 1.067 and LDC; the old values mapped to some Chinese (?) characters.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 19:30:41 +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_K;

cfloat[1] a;
cfloat[1] b;

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

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

	cfloat[] arr=concat();

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