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

8 lines
113 B
Kotlin
Vendored

import java.io.InputStream
fun InputStream.test() {
readBytes()
<!DEPRECATION_ERROR!>readBytes<!>(1)
}