17 lines
309 B
Kotlin
Vendored
17 lines
309 B
Kotlin
Vendored
// WITH_STDLIB
|
|
// WORKS_WHEN_VALUE_CLASS
|
|
// LANGUAGE: +ValueClasses
|
|
|
|
interface IFoo<T : IFoo<T>> {
|
|
fun foo(t: T): String = t.bar()
|
|
fun bar(): String
|
|
}
|
|
|
|
OPTIONAL_JVM_INLINE_ANNOTATION
|
|
value class Z(val x: Int) : IFoo<Z> {
|
|
override fun bar(): String = "OK"
|
|
}
|
|
|
|
fun box(): String =
|
|
Z(1).foo(Z(2))
|