Files
kotlin-fork/compiler/testData/codegen/box/traits/kt2541.kt
T

8 lines
117 B
Kotlin
Vendored

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)