[FIR] Fix taking symbol of expression with smartcast inside DFA
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
interface A {
|
||||
fun foo()
|
||||
}
|
||||
|
||||
fun Any.test() {
|
||||
if (this is A) {
|
||||
val a = this
|
||||
a.foo()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user