blob: 5be4abf0272c65abe2e12fca3dd34b5249d93168 [file]
interface A<T, U> {
fun foo(t: T, u: U) = "OK"
}
class B<T> : A<T, Int>
fun box(): String = B<Int>().foo(1, 2)