Debugger: ability to set breakpoint to lambda in return statement (KT-14615)

#KT-14615 Fixed
This commit is contained in:
Natalia Ukhorskaya
2016-11-24 02:34:24 +03:00
committed by Nikolay Krasko
parent 730e561177
commit 01d4ec4187
5 changed files with 34 additions and 4 deletions
@@ -2,7 +2,7 @@ class A {
fun foo() {
val a = {
fun innerFoo() {
val b = {} // A\$foo\$a\$1\$1
val b = 1 // A\$foo\$a\$1\$1
}
innerFoo()
}()