8 lines
177 B
Kotlin
Vendored
8 lines
177 B
Kotlin
Vendored
import java.io.*
|
|
|
|
class C {
|
|
@Throws(IOException::class)
|
|
internal fun foo() {
|
|
ByteArrayInputStream(ByteArray(10)).use { stream -> println(stream.read()) }
|
|
}
|
|
} |