I've come across the following Java interop issue....
# announcements
s
I've come across the following Java interop issue. If I have
Copy code
interface TestA<out T> {
    fun foo(): T
}

abstract class TestB : TestA<Unit> {
    override fun foo() {

    }
}