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
@@ -3,17 +3,17 @@
fun test() {
val buildee = stepByStepBuild(
<!BUILDER_INFERENCE_MULTI_LAMBDA_RESTRICTION!>{
{
it.<!UNRESOLVED_REFERENCE!>concreteTypeMemberProperty<!>
TargetType()
}<!>,
<!BUILDER_INFERENCE_MULTI_LAMBDA_RESTRICTION!>{
},
{
consumeTargetTypeBase(it)
}<!>
}
)
// exact type equality check — turns unexpected compile-time behavior into red code
// considered to be non-user-reproducible code for the purposes of these tests
checkExactType<Buildee<TargetType>>(<!ARGUMENT_TYPE_MISMATCH("Buildee<TargetType>; Buildee<TargetTypeBase>")!>buildee<!>)
checkExactType<Buildee<TargetType>>(buildee)
}