summary refs log blame commit diff stats
path: root/tests/stdlib/t14139.nim
blob: 07d2ff137645638a3b24f30f554f89612c5f8644 (plain) (tree)
1
2
3
4
5
6
7
8
9







                               
               
import heapqueue

var test_queue : HeapQueue[int]

test_queue.push(7)
test_queue.push(3)
test_queue.push(9)
let i = test_queue.pushpop(10)
doAssert i == 3