mirror of
https://github.com/dlang/phobos.git
synced 2025-05-04 17:11:26 +03:00
16 lines
232 B
D
16 lines
232 B
D
|
|
import object;
|
|
import stdio;
|
|
|
|
class OutOfMemory : Object
|
|
{
|
|
void print()
|
|
{
|
|
printf("Out of memory\n");
|
|
}
|
|
|
|
extern (C) static void _d_OutOfMemory()
|
|
{
|
|
throw (OutOfMemory)(void *)OutOfMemory.classinfo.init;
|
|
}
|
|
}
|