mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-13 06:43:52 +00:00
revert the bugfix for #11747 as it really was a new, poorly though-out feature
This commit is contained in:
@@ -1414,9 +1414,6 @@ 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)
|
||||
|
||||
|
||||
@@ -40,4 +40,4 @@ type
|
||||
|
||||
MyRefType = ref MyType
|
||||
|
||||
echo sizeof(MyRefType[])
|
||||
echo sizeof(default(MyRefType)[])
|
||||
|
||||
Reference in New Issue
Block a user