blob: 9e76fbf5f05fc71e2d8395609771e3c9248d4399 [file] [log] [blame]
package test
interface A<T> {
fun foo(): T
}
class B : A<Int> {
override fun foo(): Int = 42
}