Make ByteArray.inputStream a method, not a property.

#KT-8360 Fixed
This commit is contained in:
Ilya Gorbunov
2015-07-03 19:09:52 +03:00
parent 4de5dd9aeb
commit 8b325e8a30
2 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ class OldStdlibTest() {
x [index] = index.toByte()
}
for(b in x.inputStream) {
for(b in x.inputStream()) {
println(b)
}
}