11 lines
124 B
Plaintext
Vendored
11 lines
124 B
Plaintext
Vendored
// "Remove parameter 'x'" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
fun f(<caret>y: Int) {
|
|
f(2);
|
|
}
|
|
|
|
fun g(x: Int, y: Int) {
|
|
f(y);
|
|
}
|