mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 06:00:35 +03:00
16 lines
212 B
D
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;
|
|
}
|
|
|