blob: 846c957487fd85b250b06b13e29fbfa6dbdc3b2b [file]
// JVM_ABI_K1_K2_DIFF: KT-63984
// MODULE: lib
// FILE: A.kt
package test
var property = "fail"
private set
fun test() {
property = "OK"
}
// MODULE: main(lib)
// FILE: B.kt
import test.*
fun box(): String {
test()
return property
}