Files
2024-03-15 01:28:01 +00:00

13 lines
144 B
Kotlin
Vendored

import kotlin.test.*
class A {
var field: B? = null
}
class B(var field: Int)
@Test fun runTest() {
val a = A()
a.field = B(2)
}