Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/interfaceMethodCalls/complexGenericMethodWithInlineClassOverride2.kt
T
2021-12-15 17:14:22 +00:00

31 lines
498 B
Kotlin
Vendored

// WITH_STDLIB
// WORKS_WHEN_VALUE_CLASS
// LANGUAGE: +ValueClasses
OPTIONAL_JVM_INLINE_ANNOTATION
value 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"))
}