mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 14:00:35 +00:00
* add testcase for #7165 * Remove overspecific testament spec Co-authored-by: Clyybber <darkmine956@gmail.com>
This commit is contained in:
15
tests/distinct/t7165.nim
Normal file
15
tests/distinct/t7165.nim
Normal 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()
|
||||
Reference in New Issue
Block a user