]> git.ipfire.org Git - thirdparty/gcc.git/blob - libphobos/testsuite/libphobos.betterc/test19416.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / libphobos / testsuite / libphobos.betterc / test19416.d
1 /*******************************************/
2 // https://issues.dlang.org/show_bug.cgi?id=19416
3
4 import core.stdc.stdlib : malloc, free;
5 import core.exception : onOutOfMemoryError;
6
7 extern(C) void main()
8 {
9 auto m = malloc(1);
10 if (!m)
11 onOutOfMemoryError();
12 else
13 free(m);
14 }