Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/positionManager/objectDeclaration.kt
T
2019-10-08 19:13:55 +09:00

8 lines
100 B
Kotlin
Vendored

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