view run/i/interpret_03_A.d @ 1609:3c803614a8fb

Add a few missing abstracts.
author Christian Kamm <kamm incasoftware de>
date Sun, 26 Apr 2009 13:38:23 +0200
parents eb761d8edcca
children
line wrap: on
line source

// $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;
}