blob: 8438becf723e8ccc2b200a005e8158fcdd6dff14 [file] [log] [blame]
package test
interface A<T> {
fun foo(): T
}
abstract class B : A<Int> {
override abstract fun foo(): Int
}