Files
kotlin-fork/idea/testData/quickfix/obsoleteCoroutines/inProjectFix.kt.after
T
2018-09-29 16:27:45 +03:00

13 lines
225 B
Plaintext
Vendored

// "Fix experimental coroutines usages in the project" "true"
// WITH_RUNTIME
package migrate
fun main(args: Array<String>) {
val one = sequence {
yield(1)
}
val two = iterator {
yield(1)
}
}