Example:
fun foo(x: Int, y: Int = 2) {} fun bar() { foo(1, 2) }
After the quick-fix is applied:
fun bar() { foo(1) }