diff options
Diffstat (limited to 'compiler')
-rwxr-xr-x | compiler/semexprs.nim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/semexprs.nim b/compiler/semexprs.nim index 967d60531..fe35607cb 100755 --- a/compiler/semexprs.nim +++ b/compiler/semexprs.nim @@ -382,8 +382,9 @@ proc fixAbstractType(c: PContext, n: PNode) = # an implicitely constructed array (passed to an open array): n.sons[i] = semArrayConstr(c, it) else: - if (it.typ == nil): - InternalError(it.info, "fixAbstractType: " & renderTree(it)) + nil + #if (it.typ == nil): + # InternalError(it.info, "fixAbstractType: " & renderTree(it)) proc skipObjConv(n: PNode): PNode = case n.kind |