f283f2db43
Also introduce few new diagnostics: - NONE_APPLICABLE more many inapplicable candidates - HIDDEN for visible candidates
17 lines
175 B
Kotlin
Vendored
17 lines
175 B
Kotlin
Vendored
// FILE: A.kt
|
|
|
|
import B.foo
|
|
|
|
fun test() {
|
|
<!HIDDEN!>foo<!>
|
|
}
|
|
|
|
// FILE: B.kt
|
|
object B : C<String>()
|
|
|
|
// FILE: C.kt
|
|
|
|
open class C<T> {
|
|
private var foo: String = "abc"
|
|
}
|