Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/regressions/kt1029.kt
T
2021-07-19 13:40:28 +03:00

21 lines
477 B
Kotlin
Vendored

// FIR_IDENTICAL
// !CHECK_TYPE
//KT-1029 Wrong type inference
package i
import checkSubtype
public fun<T> from(yielder: ()->Iterable<T>) : Iterable<T> {
<!NO_RETURN_IN_FUNCTION_WITH_BLOCK_BODY!>}<!>
public infix fun<T> Iterable<T>.where(predicate : (T)->Boolean) : ()->Iterable<T> {
<!NO_RETURN_IN_FUNCTION_WITH_BLOCK_BODY!>}<!>
fun a() {
val x = 0..200
val odd = from (x where {it%2==0}) // I believe it should infer here
checkSubtype<Iterable<Int>>(odd)
}