blob: c0021a11ccc2a72718980a3eb5cd8f73f8e613d6 [file] [log] [blame]
import java.io.*
class C {
@Throws(IOException::class)
internal fun foo() {
ByteArrayInputStream(ByteArray(10)).use { stream ->
// reading something
val c = stream.read()
println(c)
}
}
}