Files
kotlin-fork/jps-plugin/testData/incremental/pureKotlin/parameterWithDefaultValueAdded/fun.kt
T
Roman Artemev 96ba3b873e [IC] Add in-module tests for incremental compilation
Two tests to check recompilation when parameter with default value was
added or removed without changing use-site.
2021-01-26 19:23:23 +03:00

6 lines
57 B
Kotlin
Vendored

package test
fun f(x: Any) {
println("f(x: Any)")
}