Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/kt14012.kt
T

19 lines
186 B
Kotlin
Vendored

// FILE: A.kt
package test
var property = "fail"
private set
fun test() {
property = "OK"
}
// FILE: B.kt
import test.*
fun box(): String {
test()
return property
}