Files
2023-09-18 21:12:45 +00:00

11 lines
254 B
Kotlin
Vendored

package test
interface MyInterface {
operator fun getValue(thisRef: Any, property: Any): MyInterface
}
class Foo(constructorParam: MyInterface) {
val regularProperty: MyInterface
val property: MyInterface by <expr>constructorParam</expr>
}