[FIR] Replace uninferred type variables and stub types during delegate inference

This commit is contained in:
Dmitriy Novozhilov
2022-10-18 14:18:16 +03:00
committed by Space Team
parent 94387da867
commit 22c21ca4df
11 changed files with 144 additions and 16 deletions
@@ -1,10 +1,11 @@
// FIR_DUMP
// WITH_REFLECT
import kotlin.properties.ReadWriteProperty
import kotlin.reflect.KProperty1
class ProcessorWithParent : Entity {
var processor by <!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>parent<!>(ProcessorWithChildren::processors)
var processor by parent(ProcessorWithChildren::processors)
}
class ProcessorWithChildren : Entity {