Files
ldc/tests/d1/testincludes/std/outofmemory.d
2012-09-07 03:51:31 +02:00

12 lines
213 B
D

module std.outofmemory;
import std.compat;
public import tango.core.Exception;
extern (C) void _d_OutOfMemory()
{
throw cast(OutOfMemoryException)
cast(void *)
OutOfMemoryException.classinfo.init;
}