Rename test data directories
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
package a
|
||||
|
||||
private class Foo {
|
||||
|
||||
}
|
||||
|
||||
private fun foo(value: Foo) {
|
||||
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package a
|
||||
|
||||
private fun test {
|
||||
foo(Foo())
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package a;
|
||||
|
||||
class J {
|
||||
void bar() {
|
||||
APackage.test();
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package a
|
||||
|
||||
fun bar() {
|
||||
test()
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package a
|
||||
|
||||
private class Foo {
|
||||
|
||||
}
|
||||
|
||||
private fun foo(value: Foo) {
|
||||
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package a
|
||||
|
||||
private fun <caret>test {
|
||||
foo(Foo())
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package a;
|
||||
|
||||
class J {
|
||||
void bar() {
|
||||
APackage.test();
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package a
|
||||
|
||||
fun bar() {
|
||||
test()
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
Function a.test uses package-private class a.Foo
|
||||
Function a.test uses package-private function a.foo
|
||||
Package-private function a.test will no longer be accessible from function a.bar
|
||||
Package-private function a.test will no longer be accessible from method J.bar()
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"mainFile": "a/main.kt",
|
||||
"type": "MOVE_KOTLIN_TOP_LEVEL_DECLARATIONS",
|
||||
"targetPackage": "b"
|
||||
}
|
||||
Reference in New Issue
Block a user