Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/primitiveOverride/CallFinalNotInSubclass.kt
2015-05-12 19:43:17 +02:00

10 lines
111 B
Kotlin
Vendored

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