FIR: Support invoke convention on super-qualified calls
This commit is contained in:
@@ -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)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user