phobos/outofmemory.d
2007-09-10 02:16:36 +00:00

17 lines
219 B
D

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