8 lines
89 B
Kotlin
Vendored
8 lines
89 B
Kotlin
Vendored
import java.io.InputStream
|
|
|
|
fun InputStream.test() {
|
|
readBytes()
|
|
|
|
readBytes(1)
|
|
}
|