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:
+2
-2
@@ -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
|
||||
|
||||
@@ -5,7 +5,7 @@ fun foo() {
|
||||
FOO,
|
||||
BAR
|
||||
}
|
||||
val foo = A.<!UNRESOLVED_REFERENCE!>FOO<!>
|
||||
val foo = A.FOO
|
||||
val b = object {
|
||||
enum class B {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user