Files
kotlin/idea/testData/debugger/selectExpression/objectMethodCall.kt
2016-02-02 15:16:14 +03:00

8 lines
84 B
Kotlin
Vendored

fun foo(i: Int) {
<caret>O.foo()
}
object O {
fun foo() {}
}
// EXPECTED: O