Comment #0 by bearophile_hugs — 2012-11-12T20:27:34Z
This is from std.container.DList, it returns nothing:
DList opOpAssign(string op, Stuff)(Stuff rhs)
if (op == "~" && isImplicitlyConvertible!(Stuff, T))
{
if (_last) _last._next = rhs._first;
if (rhs._first) rhs_.first._prev = _last;
}