Incremental: fixed adding file to package and using it from Java

This commit is contained in:
Evgeny Gerashchenko
2015-03-03 21:44:08 +03:00
parent 02555478d7
commit 3aa5f5200b
7 changed files with 49 additions and 1 deletions
@@ -0,0 +1,5 @@
class Usage {
void usage() {
test.TestPackage.a();
}
}
@@ -0,0 +1,6 @@
class Usage {
void usage() {
test.TestPackage.a();
test.TestPackage.b();
}
}
@@ -0,0 +1,4 @@
package test
fun a() {
}
@@ -0,0 +1,4 @@
package test
fun b() {
}
@@ -0,0 +1,20 @@
Cleaning output files:
out/production/module/Usage.class
End of files
Compiling files:
src/b.kt
End of files
Compiling files:
src/Usage.java
End of files
Cleaning output files:
out/production/module/Usage.class
out/production/module/test/TestPackage$a$*.class
out/production/module/test/TestPackage.class
End of files
Compiling files:
src/a.kt
End of files
Compiling files:
src/Usage.java
End of files