view compile/i/interpret_06_B.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents 1665114e9a64
children
line wrap: on
line source

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

// @author@	Don Clugston <clugdbug@yahoo.com.au>
// @date@	2007-04-23
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1177
// @desc@	[Issue 1177] $ no longer works inside CTFE functions.

module dstress.compile.i.interpret_06_B;

bool b(char[] a){
	return (a[a.length-1]=='b');
}

static assert(!b("abc"));
static assert(b("b"));