blob: aff93d3aa5f7caa92e715edc05c42c114159d51d [file] [log] [blame]
/*******************************************/
// https://issues.dlang.org/show_bug.cgi?id=19416
import core.stdc.stdlib : malloc, free;
import core.exception : onOutOfMemoryError;
extern(C) void main()
{
auto m = malloc(1);
if (!m)
onOutOfMemoryError();
else
free(m);
}