Files
kotlin-fork/compiler/testData/codegen/box/delegation/genericProperty.kt
T
2023-12-26 10:18:19 +00:00

11 lines
190 B
Kotlin
Vendored

// JVM_ABI_K1_K2_DIFF: KT-63828, KT-63855, KT-63871
interface I {
val <T> T.id: T
get() = this
}
class A(i: I) : I by i
fun box(): String = with(A(object : I {})) { "OK".id }