31 lines
1.1 KiB
Kotlin
Vendored
31 lines
1.1 KiB
Kotlin
Vendored
// ISSUE: KT-60447
|
|
|
|
fun test() {
|
|
val buildee = build {
|
|
class ConcreteType
|
|
class TargetType {
|
|
fun consumeConcreteType(value: ConcreteType) {}
|
|
fun targetTypeMemberFunction() {}
|
|
}
|
|
setTypeVariableProducerFunction { TargetType() }
|
|
setTypeVariableConsumerFunction { it.<!DEBUG_INFO_ELEMENT_WITH_ERROR_TYPE, DEBUG_INFO_UNRESOLVED_WITH_TARGET, UNRESOLVED_REFERENCE!>consumeConcreteType<!>(ConcreteType()) }
|
|
}
|
|
// local class equality check — turns unexpected compile-time behavior into red code
|
|
// considered to be non-user-reproducible code for the purposes of these tests
|
|
buildee.typeVariableProducer().targetTypeMemberFunction()
|
|
}
|
|
|
|
|
|
|
|
|
|
class Buildee<TV> {
|
|
var typeVariableConsumer: (TV) -> Unit = {}
|
|
var typeVariableProducer: () -> TV = { null!! }
|
|
fun setTypeVariableConsumerFunction(consumer: (TV) -> Unit) { typeVariableConsumer = consumer }
|
|
fun setTypeVariableProducerFunction(producer: () -> TV) { typeVariableProducer = producer }
|
|
}
|
|
|
|
fun <PTV> build(instructions: Buildee<PTV>.() -> Unit): Buildee<PTV> {
|
|
return Buildee<PTV>().apply(instructions)
|
|
}
|