mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 12:07:51 +00:00
Enable the requiresInit checks only for objects
This commit is contained in:
committed by
Andreas Rumpf
parent
8ae48292ff
commit
54f06427c8
@@ -2268,7 +2268,7 @@ proc semMagic(c: PContext, n: PNode, s: PSym, flags: TExprFlags): PNode =
|
||||
result = semDirectOp(c, n, flags)
|
||||
c.config.internalAssert result[1].typ.kind == tyTypeDesc
|
||||
let typ = result[1].typ.base
|
||||
if typ.kind in {tyObject, tyTuple}:
|
||||
if typ.kind == tyObject:
|
||||
checkDefaultConstruction(c, typ, n.info)
|
||||
else:
|
||||
result = semDirectOp(c, n, flags)
|
||||
|
||||
@@ -615,7 +615,7 @@ proc semVarOrLet(c: PContext, n: PNode, symkind: TSymKind): PNode =
|
||||
else: v.typ = tup
|
||||
b[j] = newSymNode(v)
|
||||
if def.kind == nkEmpty:
|
||||
if v.typ.kind in {tyObject, tyTuple}:
|
||||
if v.typ.kind == tyObject:
|
||||
checkDefaultConstruction(c, v.typ, v.info)
|
||||
else:
|
||||
checkNilable(c, v)
|
||||
|
||||
Reference in New Issue
Block a user