Move: Fix scope of internal reference recovery in the case of file move

#KT-22282 Fixed
This commit is contained in:
Alexey Sedunov
2018-02-14 15:38:45 +03:00
parent 4537192e86
commit bdfc814389
7 changed files with 39 additions and 1 deletions
@@ -0,0 +1,11 @@
package my2
import my2.Foo.*
class Foo {
class Bar
}
fun main(args: Array<String>) {
val b = Bar()
}
@@ -0,0 +1,11 @@
package my
import my.Foo.*
class Foo {
class Bar
}
fun main(args: Array<String>) {
val b = Bar()
}
@@ -0,0 +1,5 @@
{
"mainFile": "my/test.kt",
"type": "MOVE_FILES",
"targetPackage": "my2"
}