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