mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-28 17:41:45 +00:00
fixes #11747
This commit is contained in:
@@ -1414,6 +1414,9 @@ proc semDeref(c: PContext, n: PNode): PNode =
|
||||
var t = skipTypes(n.sons[0].typ, {tyGenericInst, tyVar, tyLent, tyAlias, tySink, tyOwned})
|
||||
case t.kind
|
||||
of tyRef, tyPtr: n.typ = t.lastSon
|
||||
of tyTypeDesc:
|
||||
# typeof(x[]) is still a typedesc:
|
||||
n.typ = makeTypeDesc(c, t.lastSon.lastSon)
|
||||
else: result = nil
|
||||
#GlobalError(n.sons[0].info, errCircumNeedsPointer)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user