Test multifile facades in mpp projects
This commit is contained in:
committed by
Pavel V. Talanov
parent
8185b1bf02
commit
a8a490ea5a
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
@file:kotlin.jvm.JvmName("MultifileKt")
|
||||
@file:kotlin.jvm.JvmMultifileClass
|
||||
package j
|
||||
|
||||
fun common() {
|
||||
|
||||
}
|
||||
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
package j;
|
||||
|
||||
public class Use {
|
||||
public static void use() {
|
||||
j.MultifileKt.common();
|
||||
j.MultifileKt.j();
|
||||
}
|
||||
}
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
@file:kotlin.jvm.JvmName("MultifileKt")
|
||||
@file:kotlin.jvm.JvmMultifileClass
|
||||
package j
|
||||
|
||||
fun j() {}
|
||||
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
package j;
|
||||
|
||||
public class Use {
|
||||
public static void use() {
|
||||
j.MultifileKt.common();
|
||||
j.MultifileKt.j();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user