mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
22 lines
291 B
Kotlin
Vendored
22 lines
291 B
Kotlin
Vendored
// FILE: J.java
|
|
|
|
public class J {
|
|
protected static String protectedFun() {
|
|
return "OK";
|
|
}
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
|
|
class A {
|
|
companion object : J() {
|
|
fun test(): String {
|
|
return J.protectedFun()!!
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return A.test()
|
|
}
|