Files
ldc/tests/testincludes/std/outofmemory.d
Christian Kamm 5b9edddb9d [svn r389] Include std.outofmemory in testincludes.
Fixes run/OutOfMemory_01, 02.
2008-07-15 08:20:21 +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;
}