Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/deprecated/deprecationOnReadBytes.kt
T
2018-09-14 14:43:24 +03:00

8 lines
107 B
Kotlin
Vendored

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