view run/s/static_if_08_B.d @ 1615:8d5c55d163fd

Fix some outdated tests that used auto to mean scope.
author Christian Kamm <kamm incasoftware de>
date Sun, 12 Jul 2009 16:44:52 +0200
parents 70cf89908f9d
children
line wrap: on
line source

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

// @author@	Russ Lewis <webmaster@villagersonline.com>
// @date@	2007-02-21
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=992
// @desc@	[Issue 992] CTFE Failure with static if

module dstress.run.s.static_if_08_B;

bool isWhitespace() {
	return true;
}

static if(isWhitespace()){
	int main(){
		return 0;
	}
}