20cb075e56
This commit is an accidentally forgotten part of the KT-61045 fix #KT-61720 Fixed
10 lines
232 B
Kotlin
Vendored
10 lines
232 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
class C<T>
|
|
|
|
object Delegate {
|
|
operator fun getValue(thisRef: Any?, kProp: Any?) = 42
|
|
operator fun setValue(thisRef: Any?, kProp: Any? , newValue: Int) {}
|
|
}
|
|
|
|
var <T> C<T>.genericDelegatedProperty by Delegate
|