Files
kotlin/compiler/testData/codegen/boxAgainstJava/syntheticExtensions/_protectedSetter.kt

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
}
}