Files
kotlin-fork/compiler/testData/diagnostics/tests/j+k/wrongVarianceInJava.kt
T
2021-05-25 13:28:29 +03:00

25 lines
445 B
Kotlin
Vendored

// FIR_IDENTICAL
// !CHECK_TYPE
// !DIAGNOSTICS: -UNUSED_PARAMETER
// FILE: A.java
public class A {
public static Out<? super CharSequence> foo() { return null; }
public static In<? extends CharSequence> bar() { return null; }
}
// FILE: main.kt
class Out<out E> {
fun x(): E = null!!
}
class In<in F> {
fun y(f: F) {}
}
fun test() {
A.foo().x() checkType { _<Any?>() }
A.bar().y(<!NULL_FOR_NONNULL_TYPE!>null<!>)
}