From 79cab1f1b61cd71d8fa5481e111d59349d694549 Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Thu, 16 Jan 2014 23:40:18 +0400 Subject: [PATCH] Updated test data. --- compiler/integration-tests/testData/k2jsManySources/bar.kt | 2 ++ .../integration-tests/testData/k2jsManySources/root1/main.kt | 2 +- .../integration-tests/testData/k2jsManySources/root2/Foo.kt | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/compiler/integration-tests/testData/k2jsManySources/bar.kt b/compiler/integration-tests/testData/k2jsManySources/bar.kt index bfb9872dc76..c7712d143f3 100644 --- a/compiler/integration-tests/testData/k2jsManySources/bar.kt +++ b/compiler/integration-tests/testData/k2jsManySources/bar.kt @@ -1 +1,3 @@ +package bar + fun bar() {} \ No newline at end of file diff --git a/compiler/integration-tests/testData/k2jsManySources/root1/main.kt b/compiler/integration-tests/testData/k2jsManySources/root1/main.kt index b327990a0cc..87a768d76bb 100644 --- a/compiler/integration-tests/testData/k2jsManySources/root1/main.kt +++ b/compiler/integration-tests/testData/k2jsManySources/root1/main.kt @@ -2,6 +2,6 @@ package foo fun box(): String { Foo() - bar() + bar.bar() return "OK" } \ No newline at end of file diff --git a/compiler/integration-tests/testData/k2jsManySources/root2/Foo.kt b/compiler/integration-tests/testData/k2jsManySources/root2/Foo.kt index 43c42f1453b..f4c5585faad 100644 --- a/compiler/integration-tests/testData/k2jsManySources/root2/Foo.kt +++ b/compiler/integration-tests/testData/k2jsManySources/root2/Foo.kt @@ -1 +1,3 @@ +package foo + class Foo \ No newline at end of file