96ba3b873e
Two tests to check recompilation when parameter with default value was added or removed without changing use-site.
6 lines
83 B
Plaintext
Vendored
6 lines
83 B
Plaintext
Vendored
package test
|
|
|
|
fun f(x: Any = "", y: String = "D") {
|
|
println("f(x: Any, $y)")
|
|
}
|