summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/pureKotlin/defaultValueRemoved2/fun.kt
blob: 3a7664d678614af0222e717236ea5557ea962344 (plain)
1
2
3
4
5
package test

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