Rename test data directories

This commit is contained in:
Alexey Sedunov
2014-03-20 17:50:49 +04:00
parent 6524adee0f
commit 6ddcd51af2
257 changed files with 26 additions and 32 deletions
@@ -0,0 +1,9 @@
package a
private class Foo {
}
private fun foo(value: Foo) {
}
@@ -0,0 +1,5 @@
package a
private fun test {
foo(Foo())
}
@@ -0,0 +1,7 @@
package a;
class J {
void bar() {
APackage.test();
}
}
@@ -0,0 +1,9 @@
package a
private class Foo {
}
private fun foo(value: Foo) {
}
@@ -0,0 +1,5 @@
package a
private fun <caret>test {
foo(Foo())
}
@@ -0,0 +1,7 @@
package a;
class J {
void bar() {
APackage.test();
}
}
@@ -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()
@@ -0,0 +1,5 @@
{
"mainFile": "a/main.kt",
"type": "MOVE_KOTLIN_TOP_LEVEL_DECLARATIONS",
"targetPackage": "b"
}