blob: f059da1660239899ad152ffc5a56ed2575b7db1b [file] [log] [blame]
// "Remove parameter 'x'" "true"
// DISABLE-ERRORS
fun f(<caret>x: Int, y: Int) {
f(1, 2);
}
fun g(x: Int, y: Int) {
f(x, y);
}