Use nearest Java super qualifier for fields in IR converter

Related to KT-49507
This commit is contained in:
Mikhail Glukhikh
2022-06-15 14:45:59 +02:00
committed by Space
parent 8ae47d4c4d
commit fa914f20a4
7 changed files with 34 additions and 20 deletions
@@ -1,6 +1,6 @@
fun foo(movedPaths: MutableList<Couple<FilePath>>) {
movedPaths.forEach<Couple<FilePath>>(action = local fun <anonymous>(it: Couple<FilePath>) {
it(super<Pair>).#second.getName() /*~> Unit */
it(super<Couple>).#second.getName() /*~> Unit */
}
)
}
@@ -1,6 +1,6 @@
fun foo(movedPaths: MutableList<Couple<FilePath>>) {
movedPaths.forEach<Couple<FilePath>>(action = local fun <anonymous>(it: Couple<FilePath>) {
it(super<Pair>).#second /*!! FilePath */.getName() /*~> Unit */
it(super<Couple>).#second /*!! FilePath */.getName() /*~> Unit */
}
)
}