対応するパラメーターのデフォルト値と等しい引数を報告します。

例:


fun foo(x: Int, y: Int = 2) {}

fun bar() {
    foo(1, 2)
}

クイックフィックス適用後:


fun bar() {
    foo(1)
}