Fix forgotten test data for 10648f44ac (KT-10212)
This commit is contained in:
@@ -21,9 +21,8 @@ class DelegateImpl<T> {
|
|||||||
val value: T = null!!
|
val value: T = null!!
|
||||||
}
|
}
|
||||||
|
|
||||||
public fun <T> DelegateImpl<T>.getValue(thisRef: Any?, property: KProperty<*>): T = value
|
public operator fun <T> DelegateImpl<T>.getValue(thisRef: Any?, property: KProperty<*>): T = value
|
||||||
public fun <T> DelegateImpl<T>.setValue(thisRef: Any, property: KProperty<*>, t: T) {}
|
public operator fun <T> DelegateImpl<T>.setValue(thisRef: Any, property: KProperty<*>, t: T) {}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// FILE: first.after.kt
|
// FILE: first.after.kt
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ class DelegateImpl<T> {
|
|||||||
val value: T = null!!
|
val value: T = null!!
|
||||||
}
|
}
|
||||||
|
|
||||||
public fun <T> DelegateImpl<T>.getValue(thisRef: Any?, property: KProperty<*>): T = value
|
public operator fun <T> DelegateImpl<T>.getValue(thisRef: Any?, property: KProperty<*>): T = value
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user