Move JVM specific IC test data to separate dir
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Cleaning output files:
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
out/production/module/test/UsageKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/usage.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
@file:[JvmName("Test") JvmMultifileClass]
|
||||
package test
|
||||
|
||||
inline fun f(body: () -> Unit) {
|
||||
println("i'm inline function")
|
||||
body()
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
@file:[JvmName("Test") JvmMultifileClass]
|
||||
package other
|
||||
|
||||
inline fun f(body: () -> Unit) {
|
||||
println("i'm other inline function")
|
||||
body()
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
f { println("to be inlined") }
|
||||
other.f { println("to be inlined") }
|
||||
}
|
||||
Reference in New Issue
Block a user