Fix test data for reconcile package with directory test

(cherry picked from commit b926e02)
This commit is contained in:
Pavel V. Talanov
2015-10-15 21:19:38 +03:00
committed by Dmitry Petrov
parent abca7107a7
commit fd893ba499
12 changed files with 13 additions and 13 deletions
@@ -1,6 +1,6 @@
class Test { class Test {
static void test() { static void test() {
new Foo(); new Foo();
_DefaultPackage.foo(); TestKt.foo();
} }
} }
@@ -1,4 +1,4 @@
import static _DefaultPackage.foo; import static TestKt.foo;
class Test { class Test {
static void test() { static void test() {
@@ -1,6 +1,6 @@
class Test { class Test {
static void test() { static void test() {
new source.Foo(); new source.Foo();
source.SourcePackage.foo(); source.TestKt.foo();
} }
} }
@@ -1,5 +1,5 @@
import source.Foo; import source.Foo;
import static source.SourcePackage.foo; import static source.TestKt.foo;
class Test { class Test {
static void test() { static void test() {
@@ -3,6 +3,6 @@ package target;
class Test { class Test {
static void test() { static void test() {
new Foo(); new Foo();
TargetPackage.foo(); TestKt.foo();
} }
} }
@@ -1,6 +1,6 @@
package target; package target;
import static target.TargetPackage.foo; import static target.TestKt.foo;
class Test { class Test {
static void test() { static void test() {
@@ -1,11 +1,11 @@
package usages; package usages;
import target.Foo; import target.Foo;
import target.TargetPackage; import target.TestKt;
class Test { class Test {
static void test() { static void test() {
new Foo(); new Foo();
TargetPackage.foo(); TestKt.foo();
} }
} }
@@ -1,7 +1,7 @@
package usages; package usages;
import target.Foo; import target.Foo;
import static target.TargetPackage.foo; import static target.TestKt.foo;
class Test { class Test {
static void test() { static void test() {
@@ -3,6 +3,6 @@ package target;
class Test { class Test {
static void test() { static void test() {
new source.Foo(); new source.Foo();
source.SourcePackage.foo(); source.TestKt.foo();
} }
} }
@@ -1,7 +1,7 @@
package target; package target;
import source.Foo; import source.Foo;
import static source.SourcePackage.foo; import static source.TestKt.foo;
class Test { class Test {
static void test() { static void test() {
@@ -3,6 +3,6 @@ package usages;
class Test { class Test {
static void test() { static void test() {
new source.Foo(); new source.Foo();
source.SourcePackage.foo(); source.TestKt.foo();
} }
} }
@@ -1,7 +1,7 @@
package usages; package usages;
import source.Foo; import source.Foo;
import static source.SourcePackage.foo; import static source.TestKt.foo;
class Test { class Test {
static void test() { static void test() {