Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/primitiveOverride/CallFinalNotInSubclass.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
93 B
Kotlin

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