Files
kotlin-fork/compiler/testData/codegen/boxAgainstJava/syntheticExtensions/_protectedSetter.kt
T

16 lines
211 B
Kotlin
Vendored

package p
import _protectedSetter
fun box(): String {
return KotlinClass().ok()
}
class KotlinClass : _protectedSetter() {
fun ok(): String {
x = "o"
x += "k"
return x
}
}