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

12 lines
146 B
Kotlin
Vendored

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