Fix forgotten test data for 10648f44ac (KT-10212)

This commit is contained in:
Nikolay Krasko
2016-02-11 16:24:38 +03:00
parent 85436de2b3
commit ca0346bdae
2 changed files with 3 additions and 4 deletions
@@ -21,9 +21,8 @@ class DelegateImpl<T> {
val value: T = null!!
}
public 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>.getValue(thisRef: Any?, property: KProperty<*>): T = value
public operator fun <T> DelegateImpl<T>.setValue(thisRef: Any, property: KProperty<*>, t: T) {}
// FILE: first.after.kt
@@ -21,7 +21,7 @@ class DelegateImpl<T> {
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