K2: Adjust test data after PCLA implementation [multiLambdaRestriction]

^KT-59791 In Progress
This commit is contained in:
Denis.Zharkov
2023-12-19 18:43:54 +01:00
committed by Space Team
parent b9019d3de1
commit 8365eb54dd
9 changed files with 39 additions and 39 deletions
@@ -12,7 +12,7 @@ data class Output(val source: InputWrapper<List<String>>)
fun main2(input: InputWrapper<Unit>): Output {
val output = input.doMapping(
foo = { buildList { add("this is List<String>") } },
bar = <!BUILDER_INFERENCE_MULTI_LAMBDA_RESTRICTION!>{ it.isNotEmpty() }<!>,
bar = { it.isNotEmpty() },
)
return Output(source = output)