mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 00:21:35 +00:00
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 |