JVM_IR indy-SAM conversions: add more tests

KT-44278 KT-26060 KT-42621
This commit is contained in:
Dmitry Petrov
2021-01-26 17:28:40 +03:00
parent 98b0c07b18
commit ad1d80d700
10 changed files with 151 additions and 0 deletions
@@ -0,0 +1,23 @@
// TARGET_BACKEND: JVM
// JVM_TARGET: 1.8
// SAM_CONVERSIONS: INDY
// WITH_RUNTIME
// FULL_JDK
import java.util.stream.*
fun test() =
IntStream.of(1, 1, 4, 5, 1, 4)
.map { a: Int -> a + 1 }
.map { a: Int -> a - 1 }
.filter { a: Int -> a > 3 }
.flatMap { a: Int -> IntStream.of(a, a, a) }
.boxed()
.collect(Collectors.toList())
// JVM_IR_TEMPLATES
// 4 INVOKEDYNAMIC
// 0 class StreamApiKt\$test\$
// JVM_TEMPLATES
// 0 INVOKEDYNAMIC
// 4 class StreamApiKt\$test\$