Discriminate gensym'd type names in sigHash

The root cause of #7905 lies in the codegen phase. The two template
instantiations generate two different MyType types with different
members but same t.sym.name leading the caching mechanism to confuse
the two.

Fixes #7905
This commit is contained in:
LemonBoy
2018-06-21 22:21:24 +02:00
parent 0da87939d1
commit af66258dca
2 changed files with 22 additions and 2 deletions

18
tests/types/t7905.nim Normal file
View File

@@ -0,0 +1,18 @@
discard """
output: '''
(member: "hello world")
(member: 123.456)
'''
"""
template foobar(arg: typed): untyped =
type
MyType = object
member: type(arg)
var myVar: MyType
myVar.member = arg
echo myVar
foobar("hello world")
foobar(123.456'f64)