ccc32b4e3b
- use-site should be contained within the class that owns callee symbol - class-representative of dispatch receiver value should be exactly the same as a container class of a callee (not its subtype)
12 lines
149 B
Kotlin
Vendored
12 lines
149 B
Kotlin
Vendored
// SKIP_TXT
|
|
|
|
abstract class A {
|
|
fun foo(b: B) {
|
|
b.<!INVISIBLE_MEMBER!>prv<!>()
|
|
}
|
|
|
|
private fun prv() {}
|
|
}
|
|
|
|
abstract class B : A()
|