Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/deprecated/noDeprecationOnReadBytes.kt
T
2022-07-19 17:17:35 +02:00

12 lines
146 B
Kotlin
Vendored

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