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