- call multifile class members (compiling against binaries)
- inline multifile class members
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
import b.bar
|
||||
|
||||
fun box(): String = bar()
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package b
|
||||
|
||||
import a.foo
|
||||
|
||||
fun bar(): String = foo()
|
||||
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
@file:[JvmName("MultifileClass") JvmMultifileClass]
|
||||
package a
|
||||
|
||||
fun foo(): String = "OK"
|
||||
Reference in New Issue
Block a user