view nocompile/o/opCat_20.d @ 1535:20d8ee6523e1

updated to DMD-1.013
author thomask
date Mon, 07 May 2007 05:19:57 +0000
parents b8c0195059d9
children
line wrap: on
line source

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

// @author@	Nick <Nick_member@pathlink.com>
// @date@	2006-02-10
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=6201

// __DSTRESS_ELINE__ 15

module dstress.run.o.opCat_20;

int main(){
	char[][] a;
	a = a ~ "eins";
	a = a ~ "zwei";

	if(a.length == 2){
		if(a[0] == "eins"){
			if(a[1] == "zwei"){
				return 0;
			}
			assert(0);
		}
		assert(0);
	}
}