15 lines
244 B
Plaintext
Vendored
15 lines
244 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
import java.io.Closeable
|
|
|
|
class MyCloseable : Closeable {
|
|
override fun close() {}
|
|
|
|
fun process(x: Int) = x
|
|
|
|
fun Int.foo() {
|
|
this@MyCloseable.use {
|
|
this@MyCloseable.process(this)
|
|
}
|
|
}
|
|
} |