view run/d/dchar_11_B.d @ 1307:071d5525be12

[Issue 740] dchar[].dup causes compiler segfault Thomas K?hne <thomas-dloop@kuehne.cn> 2006-12-25 http://d.puremagic.com/issues/show_bug.cgi?id=740
author thomask
date Sun, 31 Dec 2006 02:01:05 +0000
parents
children
line wrap: on
line source

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

// @author@	Thomas Kühne <thomas-dloop@kuehne.cn>
// @date@	2006-12-25
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=740
// @desc@	[Issue 740] dchar[].dup causes compiler segfault

module dstress.run.d.dchar_11_B;

int main(){
	dchar[] a;
	dchar[] b;

	a = "-\U000000A1\U00000901\U0000FFEE\U00010000\U000FFFFD_";
	b = a;

	return 0;
}