Use 'symbol' instead of 'classId' in FirResolvedQualifier

This commit solves problem with resolved qualifier of local class
#KT-36758 Fixed
This commit is contained in:
Mikhail Glukhikh
2020-02-18 14:14:13 +03:00
parent 3d51af2935
commit ace259314b
25 changed files with 47 additions and 54 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ fun foo() {
FOO,
BAR
}
val foo = A.<!UNRESOLVED_REFERENCE!>FOO<!>
val foo = A.FOO
val b = object {
enum class B {}
}