mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
14 lines
243 B
Kotlin
Vendored
14 lines
243 B
Kotlin
Vendored
class Outer {
|
|
private companion object {
|
|
val result = "OK"
|
|
|
|
fun bar() = result
|
|
}
|
|
|
|
fun test() = bar()
|
|
|
|
}
|
|
|
|
// 0 access\$Companion
|
|
// 1 INVOKEVIRTUAL Outer\$Companion\.bar
|
|
// 1 INVOKEVIRTUAL Outer\$Companion\.getResult |