view run/dup_05.d @ 1588:d20691fd37af

Move template_61_C from nocompile to run.
author Christian Kamm <kamm incasoftware de>
date Mon, 25 Aug 2008 21:56:28 +0200
parents fe7d22541b43
children
line wrap: on
line source

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

module dstress.run.dup_05;

int main(){
	char[] a= "abc".dup;
	char[] b;
	b=a.dup;
	assert(a=="abc");
	assert(a==b);
	assert(a.ptr!=b.ptr);
	return 0;
}