8 lines
100 B
Kotlin
8 lines
100 B
Kotlin
object Obj {
|
|
val x = foo() // Obj
|
|
|
|
fun foo(): Int {
|
|
return 0 // Obj
|
|
}
|
|
}
|