[IR] update testdata: print class name for callable references without receivers

This commit is contained in:
Zalim Bashorov
2020-11-11 17:02:39 +03:00
committed by teamcityserver
parent b6e37c1f89
commit e94528fe0d
12 changed files with 27 additions and 27 deletions
@@ -18,13 +18,13 @@ class Value<T : Any?> {
}
val <T : Any?> Value<T>.additionalText: Int /* by */
field = DVal(kmember = ::text)
field = DVal(kmember = Value::text)
get(): Int {
return #additionalText$delegate.getValue(t = <this>, p = ::additionalText/*<T>()*/)
}
val <T : Any?> Value<T>.additionalValue: Int /* by */
field = DVal(kmember = ::value)
field = DVal(kmember = Value::value)
get(): Int {
return #additionalValue$delegate.getValue(t = <this>, p = ::additionalValue/*<T>()*/)
}