FIR2IR: make sources of qualified accesses & calls closer to PSI2IR
#KT-60111 Fixed
This commit is contained in:
committed by
Space Team
parent
7c66a3dc65
commit
b7b7dd1000
@@ -5,11 +5,11 @@
|
||||
// WITH_STDLIB
|
||||
|
||||
object A {
|
||||
const val recursive1: Int = 1 <!EVALUATION_ERROR!>+ B.recursive2<!>
|
||||
const val recursive1: Int = <!EVALUATION_ERROR!>1 + B.recursive2<!>
|
||||
}
|
||||
|
||||
class B {
|
||||
companion object {
|
||||
const val recursive2: Int = A.recursive1 <!EVALUATION_ERROR!>+ 2<!>
|
||||
const val recursive2: Int = <!EVALUATION_ERROR!>A.recursive1 + 2<!>
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user