Top level functions inside module should be invoked using package$src class
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
package a
|
||||
|
||||
fun test1() {}
|
||||
|
||||
// 2 INVOKESTATIC a/APackage\$src\$1\$[\-]*[0-9]*\.test1 \(\)V
|
||||
// 1 INVOKESTATIC b/BPackage\$src\$2\$[\-]*[0-9]*\.test2 \(\)V
|
||||
@@ -0,0 +1,7 @@
|
||||
package b
|
||||
|
||||
import a.test1
|
||||
|
||||
fun test2() {
|
||||
test1()
|
||||
}
|
||||
Reference in New Issue
Block a user