7786896e9b
Questionable So #KT-22030 Fixed
10 lines
124 B
Kotlin
Vendored
10 lines
124 B
Kotlin
Vendored
// PROBLEM: none
|
|
open class A {
|
|
<caret>internal fun foo() {}
|
|
|
|
fun bar(c: C) {
|
|
c.foo()
|
|
}
|
|
}
|
|
|
|
class C : A() |