Files
kotlin-fork/compiler/testData/codegen/regressions/kt2541.kt
T
2012-07-27 19:43:14 +04:00

8 lines
113 B
Kotlin

trait A<T, U> {
fun foo(t: T, u: U) = "OK"
}
class B<T> : A<T, Int>
fun box(): String = B<Int>().foo(1, 2)