4ffcbc0c2f
#KT-38134 Fixed #KT-34433 Fixed #KT-31823 Fixed
11 lines
137 B
Kotlin
Vendored
11 lines
137 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
|
|
interface A<out K> {
|
|
fun foo(x: @UnsafeVariance K): Unit
|
|
}
|
|
|
|
fun test(a: A<*>) {
|
|
a.foo(null)
|
|
a.foo(Any())
|
|
}
|