Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/primitiveOverride/CallFinalNotInSubclass.kt
2014-03-19 23:24:27 +04:00

10 lines
107 B
Kotlin

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