[FIR] Unwrap smartcast on dispatch receiver in CFA for class initialization

^KT-56863 Fixed
This commit is contained in:
Dmitriy Novozhilov
2023-03-01 13:26:57 +02:00
committed by Space Team
parent bb368bd191
commit ae07d0e9ce
9 changed files with 59 additions and 7 deletions
@@ -0,0 +1,11 @@
// ISSUE: KT-56863
interface I
open class Some {
val x: Int
init {
this as I
x = 1
}
}