mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
17 lines
172 B
Kotlin
Vendored
17 lines
172 B
Kotlin
Vendored
// A
|
|
// WITH_RUNTIME
|
|
|
|
class A {
|
|
companion object {
|
|
@JvmStatic fun f() {
|
|
|
|
}
|
|
}
|
|
|
|
object B {
|
|
@JvmStatic
|
|
fun g() {
|
|
|
|
}
|
|
}
|
|
} |