Files
kotlin/idea/testData/debugger/positionManager/functionLiteralInVal.kt
2016-11-30 13:56:29 +03:00

11 lines
177 B
Kotlin
Vendored

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