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

10 lines
111 B
Kotlin
Vendored

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