Created separate tests directory for D1.

This commit is contained in:
David Nadlinger
2012-08-29 11:16:42 +02:00
parent 837ef30fec
commit 1645eff596
27 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
module std.outofmemory;
import std.compat;
public import tango.core.Exception;
extern (C) void _d_OutOfMemory()
{
throw cast(OutOfMemoryException)
cast(void *)
OutOfMemoryException.classinfo.init;
}