FIR: Support invoke convention on super-qualified calls

This commit is contained in:
Denis.Zharkov
2021-11-02 15:36:14 +03:00
committed by teamcity
parent 0c7728f64a
commit 994040c91c
7 changed files with 51 additions and 0 deletions
@@ -0,0 +1,13 @@
// FIR_IDENTICAL
// SKIP_TXT
// FILE: main.kt
open class A {
protected open val x: (String) -> Boolean = { true }
}
class B : A() {
override val x = { y: String ->
super.x(y)
}
}