Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/interfaceDelegation/memberFunDelegatedToInlineClassInt.kt
T

18 lines
314 B
Kotlin
Vendored

// WITH_RUNTIME
import kotlin.test.assertEquals
interface IFoo {
fun foo(s: String): String
}
inline class Z(val x: Int) : IFoo {
override fun foo(s: String): String = x.toString() + s
}
class Test(x: Int) : IFoo by Z(x)
fun box(): String {
assertEquals("1OK", Test(1).foo("OK"))
return "OK"
}