38 lines
1.2 KiB
Kotlin
Vendored
38 lines
1.2 KiB
Kotlin
Vendored
// ISSUE: KT-53422
|
|
// CHECK_TYPE_WITH_EXACT
|
|
|
|
fun test() {
|
|
val buildee = stepByStepBuild(
|
|
<!BUILDER_INFERENCE_MULTI_LAMBDA_RESTRICTION!>{
|
|
it.<!DEBUG_INFO_ELEMENT_WITH_ERROR_TYPE, DEBUG_INFO_UNRESOLVED_WITH_TARGET, 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>>(<!TYPE_MISMATCH("Buildee<TargetType>; Buildee<TargetTypeBase>"), TYPE_MISMATCH("Buildee<TargetTypeBase>; Buildee<TargetType>")!>buildee<!>)
|
|
}
|
|
|
|
|
|
|
|
|
|
class ConcreteType
|
|
open class TargetTypeBase {
|
|
val concreteTypeMemberProperty: ConcreteType = ConcreteType()
|
|
}
|
|
class TargetType: TargetTypeBase()
|
|
|
|
fun consumeTargetTypeBase(value: TargetTypeBase) {}
|
|
|
|
class Buildee<TV>
|
|
|
|
fun <PTV> stepByStepBuild(
|
|
instructionsA: Buildee<PTV>.(PTV) -> PTV,
|
|
instructionsB: Buildee<PTV>.(PTV) -> Unit,
|
|
): Buildee<PTV> {
|
|
return null!!
|
|
}
|