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

25 lines
308 B
Kotlin
Vendored

package stopInInlinedInSpecialNamedFun
// KT-12470
class Foo(bar: Bar) {
init {
with(bar) {
{
//Breakpoint!
nop()
nop()
}()
}
}
fun nop() {}
}
fun main(args: Array<String>) {
Foo(Bar())
}
class Bar