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

12 lines
138 B
Kotlin
Vendored

package p
import _protected
fun box(): String {
return KotlinClass().ok()
}
class KotlinClass : _protected() {
fun ok() = ok
}