xxxxxxxxxx
module bob;
struct Bob
{
private ubyte[] _data;
}
void reserve(ref Bob system, in size_t capacity)
{
// bob.reserve(ref Bob system, const(ulong) capacity) is not callable with (ubyte[], const(ulong)).
system._data.reserve(capacity);
}
void main()
{
}