You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
version(emsi_containers_unittest) unittest
{
UnrolledList!int list;
list.insert(4);
list.insert(8);
list.insert(12);
list.remove(8);
list.insert(16);
assert(list.back == 12); // This assert succeeds, when it should have failed
assert(list.back == 16); // This assert fails, when it should have succeeded
}
The bug is in Node.nextAvailableIndex
The text was updated successfully, but these errors were encountered:
The bug is in
Node.nextAvailableIndex
The text was updated successfully, but these errors were encountered: