phobos/std/outofmemory.d
2007-09-10 03:11:55 +00:00

16 lines
212 B
D

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