view run/opCatAssign_01.d @ 1546:f425ddcbbcd6

Aziz K?ksal <aziz.kerim@gmail.com> 2007-07-20 http://d.puremagic.com/issues/show_bug.cgi?id=1358
author thomask
date Mon, 23 Jul 2007 18:36:56 +0000
parents f87ba6507260
children 36bedfa079e6
line wrap: on
line source

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

module dstress.run.opCatAssign_01;

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