Generified subpackages obtaining, fixed it for mixed packages.

This commit is contained in:
Evgeny Gerashchenko
2013-11-29 20:31:09 +04:00
parent 3de7f7646b
commit df1e92959e
11 changed files with 123 additions and 38 deletions

View File

@@ -1,5 +1,6 @@
package test
public /*synthesized*/ fun SamInterface(/*0*/ function: () -> jet.Unit): test.SamInterface
public fun topLevelFunction(): jet.Unit
public open class JavaClass : java.lang.Object {
@@ -11,6 +12,10 @@ public final class KotlinClass {
public constructor KotlinClass()
}
public trait SamInterface : java.lang.Object {
public abstract fun instanceMethod(): jet.Unit
}
package JavaClass {
public open fun staticMethod(): jet.Unit
}

View File

@@ -0,0 +1,5 @@
package test;
public interface SamInterface {
void instanceMethod();
}