99966c17da
Add some unrelated tests for fake overrides
17 lines
158 B
Kotlin
Vendored
17 lines
158 B
Kotlin
Vendored
package testing
|
|
|
|
open class C {
|
|
open fun <caret>f() {
|
|
|
|
}
|
|
}
|
|
|
|
class A : C()
|
|
|
|
class B : C() {
|
|
override fun f() {
|
|
}
|
|
}
|
|
|
|
// REF: (in testing.B).f()
|