Files
kotlin-fork/compiler/testData/debug/stepping/voidLambdaStepInline.kt
T
pyos 76c34a07b2 JVM: use 1 as a synthetic line number for @InlineOnly lambdas
The source path already marks it as synthetic.
2020-05-25 20:03:56 +02:00

18 lines
218 B
Kotlin
Vendored

// FILE: test.kt
fun box(): String {
run { "O" + "K" }
run {
"O" + "K"
}
return "OK"
}
// LINENUMBERS
// test.kt:4
// fake.kt:1
// test.kt:4
// test.kt:5
// test.kt:6
// test.kt:5
// test.kt:8