Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/functionPlaceholderError.fir.kt
T
2021-06-07 15:25:47 +03:00

17 lines
424 B
Kotlin
Vendored

// !CHECK_TYPE
package a
import checkSubtype
fun <T> emptyList(): List<T> = throw Exception()
fun <T> foo(f: T.() -> Unit, l: List<T>): T = throw Exception("$f$l")
fun test() {
val q = foo(fun Int.() {}, emptyList()) //type inference no information for parameter error
checkSubtype<Int>(q)
<!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER, NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>foo<!>({}, emptyList())
}