blob: ca45627f88a4d8564d479627f65951cb3e26df05 [file] [log] [blame]
package test
interface A<T> {
fun foo(): T
}
open class B : A<Byte> {
override fun foo(): Byte = 42
}
abstract class C : A<Byte>