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

10 lines
118 B
Kotlin
Vendored

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