view compile/i/interpret_06_B.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +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"));