[IR] update testdata: better support for enum and object accesses

This commit is contained in:
Zalim Bashorov
2020-11-10 19:54:38 +03:00
committed by teamcityserver
parent 1fd12b7b8a
commit 5cb2572c60
13 changed files with 28 additions and 28 deletions
@@ -19,7 +19,7 @@ abstract enum class X : Enum<X> {
override val value: Function0<String>
field = local fun <anonymous>(): String {
return B.<get-value2>()
return X.B.<get-value2>()
}
override get
@@ -36,6 +36,6 @@ abstract enum class X : Enum<X> {
}
fun box(): String {
return X.<get-value>().invoke()
return X.B.<get-value>().invoke()
}