15 lines
157 B
Kotlin
Vendored
15 lines
157 B
Kotlin
Vendored
package a
|
|
|
|
class B {
|
|
/**
|
|
* [a.B.<caret>extVal]
|
|
*/
|
|
fun member() {
|
|
}
|
|
}
|
|
|
|
val B.extVal: String
|
|
get() = ""
|
|
|
|
// REF: (for B in a).extVal
|