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
@@ -2,8 +2,8 @@
fun test() {
data class Pair<F, S>(val first: F, val second: S)
val (<!UNRESOLVED_REFERENCE!>x<!>, <!UNRESOLVED_REFERENCE!>y<!>) =
<!INAPPLICABLE_CANDIDATE!>Pair<!>(1,
val (x, y) =
Pair(1,
if (1 == 1)
Pair<String, String>::first
else