summary refs log tree commit diff stats
path: root/tests/stdlib/t14139.nim
blob: 866bdb45f72e5074221f12300f91f3f651be4522 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import std/heapqueue
import std/assertions

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