The following code reproduces a crash: ``` import std.collection.*; import std.io.*; function test(x, y) { return x > y; } var pq = PriorityQueue.new(test); pq.push(1); pq.push(1); pq.push(1); ```