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

12 lines
140 B
Kotlin
Vendored

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