Files
kotlin-fork/compiler/testData/ir/sourceRanges/extensionLambdaCall.kt
T
Mikhail Glukhikh fe979cc822 K2: add source range test with extension lambda call
This test is equivalent to IDE debugger test
testNoParameterExtensionLambdaArgumentCallInInline3,
which changes behavior due to previous commit
2023-10-13 15:42:58 +00:00

5 lines
66 B
Kotlin
Vendored

fun lookAtMe(f: String.() -> Unit) {
"123".
f()
}