add testcase for #7165 (#15368)

* add testcase for #7165

* Remove overspecific testament spec

Co-authored-by: Clyybber <darkmine956@gmail.com>
This commit is contained in:
flywind
2020-09-21 19:32:05 +08:00
committed by GitHub
parent db9ab2a4c0
commit 6c83eb48c2

15
tests/distinct/t7165.nim Normal file
View File

@@ -0,0 +1,15 @@
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()