Files
kotlin-fork/compiler/testData/diagnostics/tests/generics/projectionsScope/recursiveUpperBoundStar.fir.kt
T

15 lines
286 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
// See KT-7296
interface A<T>
interface B<T> : A<A<T>>
fun foo(x : B<*>) {
bar1(<!ARGUMENT_TYPE_MISMATCH!>x<!>) // this should not be valid
bar2(x)
bar3(x)
}
fun bar1(x : A<A<*>>) { }
fun bar2(x : A<out A<*>>) { }
fun bar3(x : A<*>) { }