xxxxxxxxxx
extern (C)
void main()
{
import core.stdc.stdlib: malloc, free;
auto buf = malloc(size_t.sizeof);
scope (exit) free(buf);
}