KT-7587 Overloads are not generated during partial compilation of package

#KT-7587 fixed
This commit is contained in:
Evgeny Gerashchenko
2015-05-13 16:21:13 +03:00
parent ca883d8117
commit 0498bd7739
15 changed files with 98 additions and 9 deletions
@@ -0,0 +1,5 @@
class JavaUsage {
public static void main(String[] args) {
test.TestPackage.f("x");
}
}
@@ -0,0 +1,18 @@
Cleaning output files:
out/production/module/test/TestPackage$fun$*.class
out/production/module/test/TestPackage.class
End of files
Compiling files:
src/fun.kt
End of files
Cleaning output files:
out/production/module/JavaUsage.class
out/production/module/test/TestPackage$other$*.class
out/production/module/test/TestPackage.class
End of files
Compiling files:
src/other.kt
End of files
Compiling files:
src/JavaUsage.java
End of files
@@ -0,0 +1,5 @@
package test
fun f(a: String) {
}
@@ -0,0 +1,6 @@
package test
kotlin.jvm.overloads
fun f(a: String, b: Int = 5) {
}
@@ -0,0 +1,5 @@
package test
fun other() {
}