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

9 lines
112 B
Kotlin
Vendored

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