889db4cc5d
^KTIJ-18800 In progress
10 lines
154 B
Kotlin
Vendored
10 lines
154 B
Kotlin
Vendored
// DO_NOT_CHECK_SYMBOL_RESTORE
|
|
|
|
inline fun <T, R> T.use(block: (T) -> R): R {
|
|
return block(this)
|
|
}
|
|
|
|
fun foo() {
|
|
42.use { i<caret>t.toString() }
|
|
}
|