mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
Generified subpackages obtaining, fixed it for mixed packages.
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
package test;
|
||||
|
||||
public interface SamInterface {
|
||||
void instanceMethod();
|
||||
}
|
||||
Reference in New Issue
Block a user