view compile/a/assert_20_B.d @ 1359:70cf89908f9d

[Issue 992] CTFE Failure with static if Russ Lewis <webmaster@villagersonline.com> 2007-02-21 http://d.puremagic.com/issues/show_bug.cgi?id=992
author thomask
date Mon, 26 Feb 2007 11:27:37 +0000
parents
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.compile.a.assert_20_B;

bool isWhitespace(char c) {
	return true;
}

static assert(isWhitespace(' '));