0fbcf0b958
#KT-9117 Fixed
13 lines
188 B
Kotlin
Vendored
13 lines
188 B
Kotlin
Vendored
// SIBLING:
|
|
class A {
|
|
fun foo() {
|
|
val a = B()
|
|
<selection>a.unresolved()</selection>
|
|
}
|
|
|
|
private fun B.unresolved() = 1
|
|
}
|
|
|
|
class B
|
|
|
|
private fun A.unresolved() = 1 |