Files
kotlin/idea/testData/debugger/positionManager/functionLiteralInVal.kt

11 lines
178 B
Kotlin

class A {
fun foo() {
val a = {
fun innerFoo() {
val b = {} // A\$foo\$a\$1\$1
}
innerFoo()
}()
}
}