Files
kotlin/compiler/testData/codegen/box/inlineClasses/interfaceMethodCalls/complexGenericMethodWithInlineClassOverride2.kt
2020-04-27 11:50:24 +03:00

28 lines
429 B
Kotlin
Vendored

// !LANGUAGE: +InlineClasses
inline class A(val s: String)
interface B<T, U> {
fun f(x: T, y: U): String
}
interface L<T> {
fun f(x: T, y: A): String
}
interface R<T> {
fun f(x: A, y: T): String
}
open class C {
open fun f(x: A, y: A): String = y.s
}
class D: C(), B<A, A>, L<A>, R<A> {
override fun f(x: A, y: A): String = x.s
}
fun box(): String {
return (D() as B<A, A>).f(A("OK"), A("Fail"))
}