comparison tests/testincludes/std/outofmemory.d @ 368:ca401c18c24e trunk

[svn r389] Include std.outofmemory in testincludes. Fixes run/OutOfMemory_01, 02.
author ChristianK
date Tue, 15 Jul 2008 08:20:21 +0200
parents
children
comparison
equal deleted inserted replaced
367:519adb3128b1 368:ca401c18c24e
1 module std.outofmemory;
2 import std.compat;
3
4 public import tango.core.Exception;
5
6 extern (C) void _d_OutOfMemory()
7 {
8 throw cast(OutOfMemoryException)
9 cast(void *)
10 OutOfMemoryException.classinfo.init;
11 }