mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
10 lines
113 B
Nim
10 lines
113 B
Nim
# bug #2121
|
|
|
|
type
|
|
Item[K,V] = tuple
|
|
key: K
|
|
value: V
|
|
|
|
var q = newseq[Item[int,int]](0)
|
|
let (x,y) = q[0]
|