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 {
static void test() {
new Foo();
_DefaultPackage.foo();
TestKt.foo();
}
}
@@ -1,4 +1,4 @@
import static _DefaultPackage.foo;
import static TestKt.foo;
class Test {
static void test() {
@@ -1,6 +1,6 @@
class Test {
static void test() {
new source.Foo();
source.SourcePackage.foo();
source.TestKt.foo();
}
}
@@ -1,5 +1,5 @@
import source.Foo;
import static source.SourcePackage.foo;
import static source.TestKt.foo;
class Test {
static void test() {