mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
15 lines
555 B
Kotlin
Vendored
15 lines
555 B
Kotlin
Vendored
// !WITH_NEW_INFERENCE
|
|
// !CHECK_TYPE
|
|
|
|
package a
|
|
|
|
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)
|
|
|
|
<!NI;IMPLICIT_NOTHING_AS_TYPE_PARAMETER, OI;TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>foo<!>({}, <!NI;IMPLICIT_NOTHING_AS_TYPE_PARAMETER, NI;IMPLICIT_NOTHING_AS_TYPE_PARAMETER, OI;TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>emptyList<!>())
|
|
} |