Minor. Suppressed test for KT-9204.
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
// ERROR: Unresolved reference: a
|
||||
package to
|
||||
|
||||
import a.a
|
||||
|
||||
fun f(i: a) {
|
||||
fun f(i: a.a) { // todo must be i: a
|
||||
a
|
||||
a()
|
||||
}
|
||||
@@ -5,7 +5,7 @@ class a {
|
||||
}
|
||||
}
|
||||
|
||||
<selection>fun f(i: a) {
|
||||
<selection>fun f(i: a) { // todo must be i: a
|
||||
a
|
||||
a()
|
||||
}</selection>
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"mainFile": "source/foo.kt",
|
||||
"type": "MOVE_FILES",
|
||||
"targetPackage": "target"
|
||||
"targetPackage": "bas"
|
||||
}
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package target
|
||||
package bas
|
||||
|
||||
import source.foo
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package source
|
||||
|
||||
import target.C
|
||||
import bas.C
|
||||
|
||||
fun C.foo() {
|
||||
|
||||
|
||||
@@ -1,2 +1,4 @@
|
||||
|
||||
// todo must be: s: same
|
||||
fun f(s: <selection>same.same</selection>) {
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
import same.same
|
||||
|
||||
fun f(s: same) {
|
||||
// todo must be: s: same
|
||||
fun f(s: same.same) {
|
||||
}
|
||||
Reference in New Issue
Block a user