Fix wrong testdata

This commit is contained in:
Vitaliy.Bibaev
2017-10-24 19:00:43 +03:00
committed by Yan Zhulanow
parent bc7d30bd99
commit 055b0eed97
@@ -1,5 +1,5 @@
import java.util.stream.IntStream
fun main(args: Array<String>) {
<caret > IntStream.of(1, 2).reduce(IntStream.of(1, 2, 3).sum()) { l, r -> l + r }
<caret> IntStream.of(1, 2).reduce(IntStream.of(1, 2, 3).sum()) { l, r -> l + r }
}