26ec7ec296
The new testdata seems to be more correct or just different ^KTIJ-23268
15 lines
239 B
Plaintext
Vendored
15 lines
239 B
Plaintext
Vendored
interface MyRwProperty<in T, V> {
|
|
operator fun getValue(thisRef: T, property: Any): V
|
|
|
|
operator fun setValue(thisRef: T, property: Any, value: V)
|
|
}
|
|
|
|
val x: Int
|
|
|
|
val delegate: MyRwProperty<Any?, Int>
|
|
|
|
val value: Int
|
|
|
|
var variable: Int
|
|
|