fix for change signature when the order of named arguments is non-trivial
This commit is contained in:
@@ -3,8 +3,10 @@ fun foo(<caret>x1: Int = 1, x2: Float, x3: ((Int) -> Int)?) {
|
||||
val y1 = x1;
|
||||
val y2 = x2;
|
||||
val y3 = x3;
|
||||
foo(x3 = null, x1 = 2, x2 = 3.5);
|
||||
}
|
||||
|
||||
fun bar() {
|
||||
foo(x1 = 2, x2 = 3.5, x3 = null);
|
||||
foo(x3 = null, x1 = 2, x2 = 3.5);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user