Files
kotlin-fork/idea/testData/debugger/objectDeclaration.kt
T
2012-08-17 18:38:47 +04:00

8 lines
100 B
Kotlin

object Obj {
val x = foo() // Obj
fun foo(): Int {
return 0 // Obj
}
}