Files
T
Roman Artemev bf3414c491 [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.

Original commit: 96ba3b873e
2021-01-26 19:23:23 +03:00

7 lines
79 B
Kotlin

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