Files
kotlin-fork/backend.native/tests/codegen/classDelegation/withBridge.kt
T
2017-10-20 18:25:05 +03:00

32 lines
491 B
Kotlin

package codegen.classDelegation.withBridge
import kotlin.test.*
interface A<T> {
fun foo(t: T): String
}
interface B {
fun foo(t: Int) = "B"
}
class Z : B
class Z1 : A<Int>, B by Z()
fun box(): String {
val z1 = Z1()
val z1a: A<Int> = z1
val z1b: B = z1
return when {
z1.foo( 0) != "B" -> "Fail #1"
z1a.foo( 0) != "B" -> "Fail #2"
z1b.foo( 0) != "B" -> "Fail #3"
else -> "OK"
}
}
@Test fun runTest() {
println(box())
}