407448d8e3
^KT-65478 fixed
14 lines
277 B
Kotlin
Vendored
14 lines
277 B
Kotlin
Vendored
// IR_DIFFERENCE
|
|
// INLINE_SCOPES_DIFFERENCE
|
|
// LOCAL_VARIABLE_TABLE
|
|
|
|
fun String.foo(count: Int) {
|
|
val x: Boolean = false
|
|
|
|
block {
|
|
this@foo + this@block.toString() + x.toString() + count.toString()
|
|
}
|
|
}
|
|
|
|
inline fun block(block: Long.() -> Unit) = 5L.block()
|