Files
Nim/tests/distinct/t7165.nim
flywind 6c83eb48c2 add testcase for #7165 (#15368)
* add testcase for #7165

* Remove overspecific testament spec

Co-authored-by: Clyybber <darkmine956@gmail.com>
2020-09-21 13:32:05 +02:00

16 lines
278 B
Nim

type
Table[K, V] = object
key: K
val: V
MyTable = distinct Table[string, int]
MyTableRef = ref MyTable
proc newTable[K, V](): ref Table[K, V] = discard
proc newMyTable: MyTableRef =
MyTableRef(newTable[string, int]()) # <--- error here
discard newMyTable()