view run/reverse_07.d @ 1557:de3b217ccd1e

[Issue 1344] Can't implicitly convert literal 0 to typedef of ulong Russ Lewis <webmaster@villagersonline.com> 2007-07-17 http://d.puremagic.com/issues/show_bug.cgi?id=1344
author thomask
date Mon, 23 Jul 2007 18:46:24 +0000
parents 3938ed0560eb
children
line wrap: on
line source

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

module dstress.run.reverse_07;

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

	a = "abcd";
	a = a.dup;
	r = a.reverse;
	assert(r=="dcba");
	assert(r.ptr==a.ptr);

	a = "-\U000000A1\U00000901\U0000FFEE\U00010000\U000FFFFD_";
	a = a.dup;
	r = a.reverse;
	assert(r == "_\U000FFFFD\U00010000\U0000FFEE\U00000901\U000000A1-");
	assert(a.ptr==r.ptr);

	return 0;
}