view run/opCat_02.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.opCat_02;

int main(){
	char[] a="abc";
	char[] b="efg";
	char[] c=a~"d"~b;
	return 0;
}