2ecba6ac39
This directive anyway does not make test run twice with OI, and with NI It only once run the test with specific settings (// LANGUAGE) and ignores irrelevant (OI or NI tags)
17 lines
535 B
Kotlin
Vendored
17 lines
535 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{NI}, TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER{OI}!>foo<!>({}, <!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER{NI}, TYPE_INFERENCE_NO_INFORMATION_FOR_PARAMETER{OI}!>emptyList<!>())
|
|
}
|