Fix VM conversion to var type [bugfix] (#11866)

(cherry picked from commit 829f719670)
This commit is contained in:
Oscar Nihlgård
2019-08-01 17:44:12 +02:00
committed by narimiran
parent 52bdb1adc7
commit ad623d138d
2 changed files with 7 additions and 2 deletions

View File

@@ -65,3 +65,8 @@ static:
initBase(SomeBaseObj(ifb2))
echo repr(ifb2)
doAssert(ifb2.txt == "Initialized string from base")
static: # issue #11861
var ifb2: InheritedFromBase
initBase(ifb2)
doAssert(ifb2.txt == "Initialized string from base")