f5e2cd2ac4
This fixes MPP override test (see mppFakeOverride in FirMultiModuleResolveTestGenerated)
10 lines
186 B
Kotlin
Vendored
10 lines
186 B
Kotlin
Vendored
class B : A() {
|
|
override fun foo(): B = this
|
|
fun bar(): B = this // Here we should have "missing override" but no ambiguity
|
|
|
|
fun test() {
|
|
foo()
|
|
bar()
|
|
}
|
|
}
|