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