mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-31 02:43:41 +00:00
* fix #14139 * Update lib/pure/collections/heapqueue.nim Co-authored-by: Andreas Rumpf <rumpf_a@web.de> Co-authored-by: Clyybber <darkmine956@gmail.com>
This commit is contained in:
9
tests/stdlib/t14139.nim
Normal file
9
tests/stdlib/t14139.nim
Normal file
@@ -0,0 +1,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)
|
||||
assert i == 3
|
||||
Reference in New Issue
Block a user