Files
kotlin/idea/testData/debugger/positionManager/objectDeclaration.kt
2014-09-26 10:22:27 +04:00

8 lines
100 B
Kotlin
Vendored

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