FIR IDE: make smartcast API return unstable smartcasts

This commit is contained in:
Tianyu Geng
2021-11-03 10:34:49 -07:00
committed by Ilya Kirillov
parent 6462642988
commit 197079c85c
31 changed files with 356 additions and 23 deletions
@@ -0,0 +1,9 @@
interface A
interface B
var a: Any = 1
fun test() {
if (a is A && a is B) {
<expr>a</expr>
}
}