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

13 lines
280 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
interface Inv<I>
interface Inv2<I>
fun <T: Inv2<T>> foo(klass: Inv<T>): String? = null
fun <X> bar(): Inv<X> = null!!
fun test() {
<!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER, NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>foo<!>(bar())
}