xxxxxxxxxx
import core.stdc.stdlib;
:
struct Handle
{
private void* _handle;
this();
this(this);
this(int n)
{
_handle = malloc(n);
}
~this()
{
free(_handle);
}
}
void main()
{
auto t = Handle(10);
}