changeset 1420:eb761d8edcca

Re: odd issue in 1.006 Kevin Bealer <kevinbealer@gmail.com> 2007-02-17 http://www.digitalmars.com/webnews/newsgroups.php?group=digitalmars.D&article_id=49033
author thomask
date Sun, 11 Mar 2007 11:18:04 +0000
parents 5449d3b4d30c
children 8eb7223bbe9a
files run/i/interpret_03_A.d
diffstat 1 files changed, 32 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/interpret_03_A.d	Sun Mar 11 11:18:04 2007 +0000
@@ -0,0 +1,32 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Kevin Bealer <kevinbealer@gmail.com>
+// @date@	2007-02-17
+// @uri@	http://www.digitalmars.com/webnews/newsgroups.php?group=digitalmars.D&article_id=49033
+// @desc@	Re: odd issue in 1.006
+
+module dstress.run.i.interpret_03_A;
+
+int bar(char[] A){
+	int v;
+
+	for(int i = 0; i < A.length; i++) {
+		if (A[i] != ' ') {
+			v += A.length;
+		}
+	}
+
+	return v;
+}
+
+int main(){
+	const int foo = bar("a b c d");
+	if(7 * 4 != foo){
+		assert(0);
+	}
+
+	return 0;
+}
+