mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 14:40:30 +03:00
16 lines
220 B
D
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;
|
|
}
|
|
|