b63f9176a3
When creating delegation redirectors for default implementations of interface functions, `overriddenSymbols` should be repaired across the whole module, not just a particular file.
19 lines
223 B
Kotlin
Vendored
19 lines
223 B
Kotlin
Vendored
// FILE: 1.kt
|
|
class Test: Impl(), CProvider
|
|
|
|
fun box() = "OK"
|
|
|
|
// FILE: 2.kt
|
|
open class C
|
|
class D: C()
|
|
|
|
interface CProvider {
|
|
fun getC(): C
|
|
}
|
|
|
|
interface DProvider {
|
|
fun getC(): D = D()
|
|
}
|
|
|
|
open class Impl: DProvider
|