changeset 68:b33dd2406343

added length_04 (<opsfwrktdm44buww@simon.mshome.net> / digitalmars.D.bugs:2126)
author thomask
date Sat, 23 Oct 2004 10:12:27 +0000
parents ff32878c78da
children d56c4d38d987
files run/length_04.d
diffstat 1 files changed, 12 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/length_04.d	Sat Oct 23 10:12:27 2004 +0000
@@ -0,0 +1,12 @@
+// @author@	Buchan <kbuchan@xtra.co.nz>
+// @date@	2004-10-18
+// @uri@	news://opsf15ngwe44buww@simon.mshome.net
+// @url@	nttp://digitalmars.com/digitalmars.D.bugs:2126
+
+module dstress.run.length_04;
+
+int main(){
+	const int[] array = [1, 2, 3];
+	assert((array).length==3);
+	return 0;
+}