7 lines
63 B
Kotlin
Vendored
7 lines
63 B
Kotlin
Vendored
object A {
|
|
val a = "OK"
|
|
val b = A.a
|
|
}
|
|
|
|
fun box() = A.b
|