FIR Java: support Kotlin extension overriding: at last, #KT-29937 Fixed

This commit is contained in:
Mikhail Glukhikh
2019-03-13 16:06:49 +03:00
parent d00d078b4f
commit e6bb920a1d
9 changed files with 93 additions and 26 deletions
@@ -0,0 +1,10 @@
FILE: Base.kt
public abstract interface First {
}
public open class Second {
public constructor(): super<R|kotlin/Any|>()
public open function foo R|First|.(s: R|kotlin/String|, i: R|kotlin/Int|): R|kotlin/Unit| {
}
}