// FIR_IDENTICAL interface A { fun foo(x: @UnsafeVariance K): Unit } fun test(a: A<*>) { a.foo(null) a.foo(Any()) }