Rename: jps-plugin -> jps/jps-plugin
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Cleaning output files:
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
out/production/module/foo/InlineKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/inline.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
|
||||
================ Step #2 =================
|
||||
|
||||
Cleaning output files:
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
out/production/module/foo/InlineKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/inline.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package foo
|
||||
|
||||
fun test() {
|
||||
println(f())
|
||||
}
|
||||
|
||||
inline fun f(): Int = 0
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package foo
|
||||
|
||||
fun test() {
|
||||
println(f())
|
||||
}
|
||||
|
||||
inline fun f(): Int = 1
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package foo
|
||||
|
||||
fun test() {
|
||||
println(f())
|
||||
println(g())
|
||||
}
|
||||
|
||||
inline fun f(): Int = 1
|
||||
inline fun g(): Int = 1
|
||||
Reference in New Issue
Block a user