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

10 lines
101 B
Kotlin

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