FIR: do not inherit external modifier from super declaration

This commit is contained in:
Ilya Kirillov
2021-11-04 19:23:56 +01:00
parent d119976b46
commit 348403b1f3
7 changed files with 92 additions and 0 deletions
@@ -0,0 +1,10 @@
// FIR_IDENTICAL
open class A {
open external fun foo()
}
class B : A() {
override fun foo() {
super.foo()
}
}