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