Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
d062f5436041c3390e12eeca3eeea0bfc602833b
/
.
/
idea
/
jvm-debugger
/
jvm-debugger-test
/
testData
/
positionManager
/
functionLiteralInVal.kt
blob: ed341deace4af3e448ed0c8214680bad6094bf59 [
file
]
class
A
{
fun foo
()
{
val a
=
{
fun innerFoo
()
{
val b
=
1
// A\$foo\$a\$1\$1
}
innerFoo
()
}()
}
}