diff --git a/compiler/semstmts.nim b/compiler/semstmts.nim index 0c6f6848e4..8089952667 100644 --- a/compiler/semstmts.nim +++ b/compiler/semstmts.nim @@ -759,8 +759,10 @@ proc typeSectionRightSidePass(c: PContext, n: PNode) = if st.kind == tyGenericBody: st = st.lastSon internalAssert st.kind in {tyPtr, tyRef} internalAssert st.lastSon.sym == nil - st.lastSon.sym = newSym(skType, getIdent(s.name.s & ":ObjectType"), + let obj = newSym(skType, getIdent(s.name.s & ":ObjectType"), getCurrOwner(), s.info) + obj.typ = st.lastSon + st.lastSon.sym = obj proc checkForMetaFields(n: PNode) = template checkMeta(t) =