xxxxxxxxxx
extern(C) void __assert(const char *msg, const char *file, int line)
{
import core.stdc.stdio;
printf("Houston, we have a problem at %s:%u\n", file, line);
}
extern(C) void main()
assert(false);