view run/dup_04.d @ 70:5f98d4a33d49

1) review of all test cases with unexpected results (except encoding and html/xml) 2) updated todo
author thomask
date Sat, 23 Oct 2004 22:47:47 +0000
parents ff32878c78da
children a33ad7189d21
line wrap: on
line source

// @author@	Russ Lewis <spamhole-2001-07-16@deming-os.org>
// @date@	2004-10-11
// @url@	nttp://digitalmars.com/digitalmars.D.bugs:2068
// @uri@	news://ckdc4r$re2$1@digitaldaemon.com

module dstress.run.dup_04;

int main() {
	real[10] array;
	real[] copy = array.dup;
	copy.sort;
	return 0;
}