64d2cdf0c2
#KT-26679 Fixed
10 lines
214 B
Kotlin
Vendored
10 lines
214 B
Kotlin
Vendored
// "Fix experimental coroutines usage" "true"
|
|
// WITH_RUNTIME
|
|
package some
|
|
|
|
import kotlin.coroutines.experimental.buildSequence
|
|
|
|
fun main(args: Array<String>) {
|
|
val lazySeq = <caret>buildSequence<Int> {
|
|
}
|
|
} |