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

16 lines
208 B
D

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