Update test data

This commit is contained in:
Vitaliy.Bibaev
2017-12-19 20:03:36 +03:00
committed by Yan Zhulanow
parent 8a026fd9cd
commit c69e0c0d01
2 changed files with 4 additions and 6 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
LineBreakpoint created at Simple.kt:5
LineBreakpoint created at Simple.kt:3
Run Java
Connected to the target VM
Simple.kt:5
Stream.of(1, 2, 3)
Simple.kt:3
listOf(1, 2, 3).stream()
.toArray()
toArray
before: 1,2,3
+1 -3
View File
@@ -1,6 +1,4 @@
import java.util.stream.Stream
fun main(args: Array<String>) {
// Breakpoint!
Stream.of(1, 2, 3).toArray()
listOf(1, 2, 3).stream().toArray()
}