Fix scratch testdata after introducing result vals into repl

This commit is contained in:
Ilya Chernikov
2018-12-05 12:20:47 +01:00
parent 8e72495ded
commit 6e27bc0fb3
10 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
arrayListOf(1, 5, 7).map { it * 2 } // RESULT: 2
arrayListOf(1, 5, 7).map { it * 2 } // RESULT: res0: kotlin.Int? = 2
.filter { it < 10 }
.find { it == 2 }