view tests/testincludes/std/outofmemory.d @ 1400:4100c49b753f

Merge some changes from Tango's object.di into the testincludes version.
author Frits van Bommel <fvbommel wxs.nl>
date Tue, 19 May 2009 22:35:08 +0200
parents ca401c18c24e
children
line wrap: on
line source

module std.outofmemory;
import std.compat;

public import tango.core.Exception;

extern (C) void _d_OutOfMemory()
{
    throw cast(OutOfMemoryException)
    cast(void *)
    OutOfMemoryException.classinfo.init;
}