Move: Fix scope of internal reference recovery in the case of file move
#KT-22282 Fixed
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
package my2
|
||||
|
||||
import my2.Foo.*
|
||||
|
||||
class Foo {
|
||||
class Bar
|
||||
}
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
val b = Bar()
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
package my
|
||||
|
||||
import my.Foo.*
|
||||
|
||||
class Foo {
|
||||
class Bar
|
||||
}
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
val b = Bar()
|
||||
}
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"mainFile": "my/test.kt",
|
||||
"type": "MOVE_FILES",
|
||||
"targetPackage": "my2"
|
||||
}
|
||||
Reference in New Issue
Block a user