Fix primitive override problem in Kotlin-Java inheritance
See the comment in JetTypeMapper
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
trait A<T> {
|
||||
fun foo(): T
|
||||
}
|
||||
|
||||
abstract class B : A<Int> {
|
||||
override abstract fun foo(): Int
|
||||
}
|
||||
Reference in New Issue
Block a user