diff --git a/idea/testData/quickfix/typeMismatch/parameterTypeMismatch/beforeChangeFunctionParameterType4.kt b/idea/testData/quickfix/typeMismatch/parameterTypeMismatch/beforeChangeFunctionParameterType4.kt index bda9464e2bc..4337bfe4590 100644 --- a/idea/testData/quickfix/typeMismatch/parameterTypeMismatch/beforeChangeFunctionParameterType4.kt +++ b/idea/testData/quickfix/typeMismatch/parameterTypeMismatch/beforeChangeFunctionParameterType4.kt @@ -1,5 +1,10 @@ // "Change parameter 'z' type of function 'foo' to '(Int) -> String'" "false" // ERROR: Type mismatch.
Required:kotlin.Int
Found:kotlin.String
+ +// ACTION: Disable 'Move lambda function into parentheses' +// ACTION: Edit intention settings +// ACTION: Move lambda function into parentheses + fun foo(y: Int = 0, z: (Int) -> String = {""}) { foo { "": Int