view run/opCatAssign_11.d @ 1598:23834ba9736a

Fixed typos in test cases. See D bug 2174.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 17:03:25 +0200
parents f87ba6507260
children
line wrap: on
line source

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

module dstress.run.opCatAssign_11;

int main(){
	dchar[] array;
	assert(array.length==0);
	array~="abc";
	assert(array.length==3);
	return 0;
}