blob: be71497395cb060101ae56384d7cdf47a864dbbe [file]
// JVM_ABI_K1_K2_DIFF: KT-63858
class A<out K> {
fun foo(x: @UnsafeVariance K): K = x
}
fun test(a: A<*>): Any? {
return a.foo("OK")
}
fun box(): String {
return test(A<String>()) as String
}