view run/o/opCatAssign_19_A.d @ 982:825b27e25a95

<lio@lunesu.com> 2006-04-20 news:bug-111-3@http.d.puremagic.com/bugzilla/
author thomask
date Mon, 01 May 2006 09:06:06 +0000
parents
children 81222734adf3
line wrap: on
line source

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

// @author@	<lio@lunesu.com>
// @date@	2006-04-20
// @uri@	news:bug-111-3@http.d.puremagic.com/bugzilla/

module dstress.run.o.opCatAssign_19_A;

int main(){
	char[] a = "\U00091234";
	char[] b;

	dchar x = '\U00091234';

	b ~= x;

	if(a != b){
		assert(0);
	}

	return 0;
}