Temporary specify type explicitly for sequence method in debugger tests.

This commit is contained in:
Stanislav Erokhin
2018-09-19 15:45:34 +03:00
parent 95633b6027
commit 4ca0c60066
@@ -3,7 +3,7 @@ package primitivesCoertion
import kotlin.sequences.*
fun main(args: Array<String>) {
val a = sequence {
val a = sequence<Int> {
yield(1)
val a = awaitSeq()
//Breakpoint!