fixes #9149 [backport]

This commit is contained in:
Araq
2019-01-29 14:31:43 +01:00
parent a58f5b6023
commit 07a0a61875
2 changed files with 28 additions and 4 deletions

View File

@@ -0,0 +1,22 @@
discard """
output: '''123
c is not nil'''
"""
# bug #9149
type
Container = ref object
data: int
converter containerToString*(x: Container): string = $x.data
var c = Container(data: 123)
var str = string c
echo str
if c == nil: # this line can compile on v0.18, but not on 0.19
echo "c is nil"
if not c.isNil:
echo "c is not nil"