Files
kotlin-fork/idea/testData/debugger/positionManager/localFunction.kt
T

9 lines
135 B
Kotlin
Vendored

package test
fun foo(): String {
fun bar(): String {
return "" // test/LocalFunctionKt\$foo\$1
}
return bar()
}