Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/deprecated/noDeprecationOnReadBytes.kt
T

11 lines
128 B
Kotlin
Vendored

// FIR_IDENTICAL
// !API_VERSION: 1.2
import java.io.InputStream
fun InputStream.test() {
readBytes()
readBytes(1)
}