Files
kotlin-fork/jps-plugin/testData/incremental/pureKotlin/defaultValueAdded/fun.kt.new.1
T
2016-03-10 23:36:40 +03:00

9 lines
116 B
Groff
Vendored

package test
fun f(x: Any) {
println("f(x: Any)")
}
fun f(x: Int, y: Int = 2) {
println("f(x=$x, y=$y)")
}