Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/primitiveOverride/CallNotInSubclass.kt
Alexander Udalov 713c6f13ae Fix primitive override problem in Kotlin-Java inheritance
See the comment in JetTypeMapper
2013-12-30 06:41:09 +04:00

8 lines
87 B
Kotlin

trait A<T> {
fun foo(): T
}
class B : A<Int> {
override fun foo(): Int = 42
}