Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
native
/
native.tests
/
testData
/
gc
/
weak1.kt
blob: fe18c701d948660cec17d24736f78f540122743a [
file
]
import
kotlin
.
test
.*
import
kotlin
.
native
.
ref
.*
class
Node
(
var
next
:
Node
?)
@OptIn
(
kotlin
.
experimental
.
ExperimentalNativeApi
::
class
)
@Test
fun runTest1
()
{
val node1
=
Node
(
null
)
val node2
=
Node
(
node1
)
node1
.
next
=
node2
WeakReference
(
node1
)
}