Files
kotlin-fork/compiler/testData/diagnostics/tests/generics/projectionsScope/unsafeVarianceStar.kt
T
2017-11-29 02:53:49 +03:00

11 lines
143 B
Kotlin
Vendored

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