xxxxxxxxxx
extern (C)
void main()
{
import std.experimental.allocator.mallocator : Mallocator;
auto buf = Mallocator.instance.allocate(size_t.sizeof);
scope (exit) Mallocator.instance.deallocate(buf);
}