fb14b03824
Currently, FIR reports errors caused by previous resolution failure. For example with unresolved `a` and `b` in code `a.b`, both `a` and `b` are highlighted. FE1.0 only highlights `a` since it's the root cause. This change applies this heuristics when reporting FirDiagnostics.
22 lines
541 B
Kotlin
Vendored
22 lines
541 B
Kotlin
Vendored
object A {
|
|
val x : Int = 0
|
|
}
|
|
|
|
open class Foo {
|
|
fun foo() : Int = 1
|
|
}
|
|
|
|
fun test() {
|
|
A.x
|
|
val b = object : Foo() {
|
|
}
|
|
b.foo()
|
|
|
|
<error descr="[LOCAL_OBJECT_NOT_ALLOWED] Named object 'B' is a singleton and cannot be local. Try to use anonymous object instead">object B</error> {
|
|
fun foo() {}
|
|
}
|
|
B.foo()
|
|
}
|
|
|
|
val bb = <error descr="[UNRESOLVED_REFERENCE] Unresolved reference: B">B</error>.<error descr="[DEBUG] Reference is not resolved to anything, but is not marked unresolved">foo</error>()
|