FIR: Make synthetic type variables fix to self-stub type if no info

This commit is contained in:
Simon Ogorodnik
2021-11-17 17:37:59 +03:00
committed by teamcity
parent 8ae37a3dd2
commit 11ec23e5dc
9 changed files with 80 additions and 2 deletions
@@ -0,0 +1,12 @@
interface TDat
fun resolve(str: String): TDat = null!!
val recProp by lazy {
mapOf(
"" to ""
).mapValues {
resolve(it.value)
}
}