4bd604f2ed
^KT-54311
11 lines
179 B
Kotlin
Vendored
11 lines
179 B
Kotlin
Vendored
// DO_NOT_CHECK_NON_PSI_SYMBOL_RESTORE
|
|
inline fun <T, R> T.use(block: (T) -> R): R {
|
|
return block(this)
|
|
}
|
|
|
|
fun foo() {
|
|
42.use { it ->
|
|
i<caret>t.toString()
|
|
}
|
|
}
|