11 lines
254 B
Kotlin
Vendored
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>
|
|
} |