15 lines
133 B
Kotlin
Vendored
15 lines
133 B
Kotlin
Vendored
package a
|
|
|
|
class B {
|
|
/**
|
|
* [a.B.<caret>ext]
|
|
*/
|
|
fun member() {
|
|
}
|
|
}
|
|
|
|
fun B.ext() {
|
|
}
|
|
|
|
// REF: (for B in a).ext()
|