Rename: jps-plugin -> jps/jps-plugin
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Cleaning output files:
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
out/production/module/foo/FunKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/fun.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
@@ -0,0 +1,3 @@
|
||||
package foo
|
||||
|
||||
fun f(x: Int = 10) {}
|
||||
@@ -0,0 +1,3 @@
|
||||
package foo
|
||||
|
||||
fun f(x: Int = 20) {}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package foo
|
||||
|
||||
fun useDefault() {
|
||||
f()
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package foo
|
||||
|
||||
fun useNonDefault() {
|
||||
f(15)
|
||||
}
|
||||
Reference in New Issue
Block a user