12 lines
183 B
Kotlin
Vendored
12 lines
183 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
import java.io.File
|
|
import java.io.BufferedReader
|
|
|
|
fun BufferedReader.foo() {
|
|
<caret>try {
|
|
this.readLine()
|
|
}
|
|
finally {
|
|
this.close()
|
|
}
|
|
} |