[FIR] Optimization & checking fix: remove usage of dispatchReceiverValue
This commit is contained in:
committed by
Mikhail Glukhikh
parent
686965c0d3
commit
5e426fdc71
@@ -3,10 +3,10 @@ class Outer {
|
||||
if (outerState > 0) return outerState
|
||||
|
||||
class Local {
|
||||
val localState = <!UNRESOLVED_REFERENCE!>outerState<!>
|
||||
val localState = outerState
|
||||
|
||||
inner class LocalInner {
|
||||
val o = <!UNRESOLVED_REFERENCE!>outerState<!>
|
||||
val o = outerState
|
||||
val l = localState
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user