blob: 2b90f2170a614049a340d7d5a66b74ed79e67098 [file] [log] [blame]
// 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
}