Open theapache64 opened 1 year ago
Is the Do not fill default arguments
option different from what you want?
Enabling the option yields the following results.
fun foo(s: String, i: Int = 0)
fun main() {
foo(<caret>)
}
↓
fun foo(s: String, i: Int = 0)
fun main() {
foo(s = "")
}
I am wondering if I should rename the option because I sometimes get confused with it and the Fill arguments without default values
option.
Option to fill mandatory values (values doesn't have default arg)