7 lines
81 B
Kotlin
Vendored
7 lines
81 B
Kotlin
Vendored
interface I {
|
|
val <T> T.id: T
|
|
get() = this
|
|
}
|
|
|
|
class A(i: I) : I by i
|