LinkedHashMap: Fix head being null when initializing from map (#2334)

* LinkedHashMap: Fix head being null when initializing from map
This commit is contained in:
Velikiy Kirill
2025-07-28 01:26:14 +03:00
committed by GitHub
parent 208b0f6d0e
commit a21e641748
2 changed files with 6 additions and 10 deletions

View File

@@ -136,6 +136,7 @@ fn void linked_map_copy()
assert(key == expected_order[index]);
index++;
};
assert(index == 3); // check if @each worked
}
fn void linked_map_iterators()