phobos/std/outofmemory.d
2007-09-10 03:56:33 +00:00

16 lines
220 B
D

module std.outofmemory;
class OutOfMemory : Object
{
void print()
{
printf("Out of memory\n");
}
}
extern (C) void _d_OutOfMemory()
{
throw cast(OutOfMemory)cast(void *)OutOfMemory.classinfo.init;
}