fixes #19278; make privateAccess work with generic ref object (#20640)

* fixes #19278; make `privateAccess` work with generic ref object

* fixes
This commit is contained in:
ringabout
2022-10-24 21:24:51 +08:00
committed by GitHub
parent 878919a4df
commit 7c2aa53e44
3 changed files with 18 additions and 3 deletions

View File

@@ -26,6 +26,12 @@ type
H1*[T] = ref H2[T]
H*[T] = H1[T]
Pity[T] = object
a: T
PityRef*[T] = ref Pity[T]
Hope*[T] = ref object
a: T
type BAalias* = typeof(B.default)
# typeof is not a transparent abstraction, creates a `tyAlias`

View File

@@ -1,4 +1,4 @@
import std/importutils
import std/[importutils, assertions]
import stdtest/testutils
import mimportutils
@@ -134,5 +134,14 @@ template main =
privateAccess PtA
a.ha1 == 0
block:
privateAccess PityRef
let x = PityRef[int](a: 1) # works
doAssert x.a == 1
privateAccess Hope
let y = Hope[int](a: 1)
doAssert y.a == 1
static: main()
main()