Files
kotlin-fork/backend.native/tests/external/codegen/box/traits/kt2541.kt
T
2017-03-13 15:31:46 +03:00

8 lines
117 B
Kotlin

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)