xxxxxxxxxx
extern (C) int printf(in char*, ...) nothrow;
void myAssert(bool cond, string delegate() nothrow[1] msg ...) nothrow
{
msg[0]();
}
string param() nothrow
{
printf("bar\n");
return "foo";
}
void main() nothrow
{
myAssert(false, param());
}