Skip to content

Commit

Permalink
fixes #8053
Browse files Browse the repository at this point in the history
  • Loading branch information
Araq committed May 15, 2019
1 parent 5e68d8f commit 7fb256b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion compiler/sempass2.nim
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,8 @@ proc trackProc*(c: PContext; s: PSym, body: PNode) =
initEffects(g, effects, s, t, c)
track(t, body)
if not isEmptyType(s.typ.sons[0]) and
{tfNeedsInit, tfNotNil} * s.typ.sons[0].flags != {} and
({tfNeedsInit, tfNotNil} * s.typ.sons[0].flags != {} or
s.typ.sons[0].skipTypes(abstractInst).kind == tyVar) and
s.kind in {skProc, skFunc, skConverter, skMethod}:
var res = s.ast.sons[resultPos].sym # get result symbol
if res.id notin t.init:
Expand Down

0 comments on commit 7fb256b

Please sign in to comment.