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

11 lines
177 B
Kotlin
Vendored

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